13 lines
337 B
Go
13 lines
337 B
Go
package hash
|
|
|
|
import "golang.org/x/crypto/bcrypt"
|
|
|
|
func HashPassword(password string, cost int) (string, error) {
|
|
bytes, err := bcrypt.GenerateFromPassword([]byte(password), cost)
|
|
return string(bytes), err
|
|
}
|
|
|
|
func CheckPasswordHash(password, hash string) error {
|
|
return bcrypt.CompareHashAndPassword([]byte(hash), []byte(password))
|
|
}
|