1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2024-11-21 13:35:49 +02:00

decreased bcrypt round hash for admins to 12 for consistency with the auth records

This commit is contained in:
Gani Georgiev 2023-03-19 16:10:11 +02:00
parent 95bb2eb871
commit 695c20a969

View File

@ -48,7 +48,7 @@ func (m *Admin) SetPassword(password string) error {
}
// hash the password
hashedPassword, err := bcrypt.GenerateFromPassword([]byte(password), 13)
hashedPassword, err := bcrypt.GenerateFromPassword([]byte(password), 12)
if err != nil {
return err
}