(password string)
| 80 | } |
| 81 | |
| 82 | func (u *User) ValidateRawPassword(password string) error { |
| 83 | return u.ValidatePwdStaticHash(StaticHash(password)) |
| 84 | } |
| 85 | |
| 86 | func (u *User) ValidatePwdStaticHash(pwdStaticHash string) error { |
| 87 | if pwdStaticHash == "" { |
no test coverage detected