blob: e944fbedf381dce574429fc119f70b5be7bcf6ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
package hashing
import (
"crypto/md5"
"encoding/hex"
"golang.org/x/crypto/bcrypt"
"math/big"
"time"
)
const UrlLength = 7
// GenerateURI creates a unique identifier for a paste based on ip and timestamp
func GenerateURI(ip string) string {
timeStamp := time.Now().String()
return hashString(ip + timeStamp)[:UrlLength]
}
// hashes using MD5 and then converts to base 62
func hashString(text string) string {
hash := md5.Sum([]byte(text))
hexStr := hex.EncodeToString(hash[:])
bi := big.NewInt(0)
bi.SetString(hexStr, 16)
return bi.Text(62)
}
func HashPassword(password string) (string, error) {
hashedPassword, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
return string(hashedPassword), err
}
func PasswordsEqual(dbPassword, parsedPassword string) bool {
dbPassBytes := []byte(dbPassword)
parsedPassBytes := []byte(parsedPassword)
compErr := bcrypt.CompareHashAndPassword(dbPassBytes, parsedPassBytes)
// if comparison error, the given password is not valid
return compErr == nil
}
|