Authenticate the user with the given password and return true if successful. An error may be returned if an internal error occurred.
(username, password string)
| 27 | // Authenticate the user with the given password and return true if successful. |
| 28 | // An error may be returned if an internal error occurred. |
| 29 | Authenticate(username, password string) (ok bool, err error) |
| 30 | } |
| 31 | |
| 32 | type mapAuthenticator struct { |
no outgoing calls
no test coverage detected