13 lines
318 B
Go
13 lines
318 B
Go
|
|
package password
|
||
|
|
|
||
|
|
import "golang.org/x/crypto/bcrypt"
|
||
|
|
|
||
|
|
func Hash(plain string) (string, error) {
|
||
|
|
hash, err := bcrypt.GenerateFromPassword([]byte(plain), bcrypt.DefaultCost)
|
||
|
|
return string(hash), err
|
||
|
|
}
|
||
|
|
|
||
|
|
func Verify(hash, plain string) bool {
|
||
|
|
return bcrypt.CompareHashAndPassword([]byte(hash), []byte(plain)) == nil
|
||
|
|
}
|