23 lines
365 B
Go
23 lines
365 B
Go
|
package crypto
|
||
|
|
||
|
import "testing"
|
||
|
|
||
|
func TestPasswordHash(t *testing.T) {
|
||
|
pwd := "MY Bingo pwd"
|
||
|
hash, salt, err := PasswordHash(pwd)
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if hash == "" || salt == "" {
|
||
|
t.Error("either hash or password is empty")
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if !ComparePasswordHash(pwd, string(hash), string(salt)) {
|
||
|
t.Error("supposed to match")
|
||
|
}
|
||
|
|
||
|
}
|