package password import ( "golang.org/x/crypto/bcrypt" ) func HashPassword(password string) (*[]byte, error) { bytes, err := bcrypt.GenerateFromPassword([]byte(password), 14) if err != nil { return nil, err } return &bytes, err } func CheckValid(password string, hash string) bool { err := bcrypt.CompareHashAndPassword([]byte(hash), []byte(password)) if err != nil { return false } return true }