Encrypt passwords in DB (#1187)

* Encode/Encrypt passwords in DB

* Only decrypts passwords if it is necessary

* Add tests for encryption functions
This commit is contained in:
Deluan Quintão 2021-06-18 18:38:38 -04:00 committed by GitHub
parent d42dfafad4
commit 66b74c81f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 302 additions and 7 deletions

View file

@ -152,7 +152,7 @@ func createAdminUser(ctx context.Context, ds model.DataStore, username, password
}
func validateLogin(userRepo model.UserRepository, userName, password string) (*model.User, error) {
u, err := userRepo.FindByUsername(userName)
u, err := userRepo.FindByUsernameWithPassword(userName)
if err == model.ErrNotFound {
return nil, nil
}