2021-06-22 18:17:52 +02:00
|
|
|
package auth
|
|
|
|
|
|
|
|
import (
|
|
|
|
"golang.org/x/crypto/bcrypt"
|
|
|
|
)
|
|
|
|
|
2021-07-22 14:50:23 +02:00
|
|
|
var PasswordHashCost = bcrypt.DefaultCost
|
|
|
|
|
2021-06-22 18:17:52 +02:00
|
|
|
// HashPassword - create new hash of password
|
|
|
|
func HashPassword(password string) (string, error) {
|
2021-07-22 14:50:23 +02:00
|
|
|
p, err := bcrypt.GenerateFromPassword([]byte(password), PasswordHashCost)
|
2021-06-22 18:17:52 +02:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return string(p), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ValidatePassword - check if given password is equal to saved hash
|
|
|
|
func ValidatePassword(hash, password string) bool {
|
|
|
|
err := bcrypt.CompareHashAndPassword([]byte(hash), []byte(password))
|
|
|
|
return err == nil
|
|
|
|
}
|