You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To enhance the security of stored passwords, implement password hashing. Instead of storing passwords in plaintext, generate a secure hash of the password and store the hash instead.
Acceptance Criteria:
All newly saved passwords are hashed using a strong hashing algorithm.
Existing passwords can be optionally re-hashed when the user changes their password.
A suitable salt is used with the hashing process to increase security.
Password verification is performed by hashing the entered password and comparing it to the stored hash.
By implementing password hashing, we significantly reduce the risk of password exposure in case of a data breach.
The text was updated successfully, but these errors were encountered:
To enhance the security of stored passwords, implement password hashing. Instead of storing passwords in plaintext, generate a secure hash of the password and store the hash instead.
Acceptance Criteria:
By implementing password hashing, we significantly reduce the risk of password exposure in case of a data breach.
The text was updated successfully, but these errors were encountered: