We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Passwords are currently hashed with SHA256, which is good. However, they should also be salted.
This is a commonly used security measure that protects accounts from attacks involving rainbow tables, etc.
Append a salt randomly generated by the server to the end of the password before hashing upon account creation, and store the salt in the database.
Lunch_Buddies/api/login/login.go
Line 33 in 5c588f5
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Problem To Be Solved
Passwords are currently hashed with SHA256, which is good. However, they should also be salted.
Motivation
This is a commonly used security measure that protects accounts from attacks involving rainbow tables, etc.
Proposed Solution
Append a salt randomly generated by the server to the end of the password before hashing upon account creation, and store the salt in the database.
Lunch_Buddies/api/login/login.go
Line 33 in 5c588f5
The text was updated successfully, but these errors were encountered: