summary refs log tree commit diff stats
path: root/password/check.go
blob: b84e9fe85e6f1e07375d2b97ac3a665b1d92d077 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Password package contains functions related to passwords.
package password

import "golang.org/x/crypto/bcrypt"

// Check takes a string and hash as input and returns an error. If
// the error is not nil then the consider the password wrong. We're
// returning error instead of a bool so that we can print failed
// logins to log and logging shouldn't happen here.
func Check(password, hash string) error {
	err := bcrypt.CompareHashAndPassword([]byte(hash), []byte(password))
	return err
}