Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Random Password Generator: Hash Saved Passwords #6

Open
Michael-Obele opened this issue Jul 14, 2024 · 0 comments
Open

Random Password Generator: Hash Saved Passwords #6

Michael-Obele opened this issue Jul 14, 2024 · 0 comments
Labels
enhancement New feature or request security Issues related to data protection and system integrity.

Comments

@Michael-Obele
Copy link
Owner

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.

@Michael-Obele Michael-Obele added enhancement New feature or request security Issues related to data protection and system integrity. password-manager labels Jul 14, 2024
@Michael-Obele Michael-Obele changed the title Hash Saved Passwords Random Password Generator: Hash Saved Passwords Jul 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request security Issues related to data protection and system integrity.
Projects
None yet
Development

No branches or pull requests

1 participant