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
Currently we are storing sha1 hash of the password. Then, on login, we are comparing the hash of the submitted password with the database column.
sha1
This isn't a good idea because unsalted hashes are vulnerable to rainbow tables, and sha1 is not a good choice because it's a fast hash.
PHP has good built-in functions that handle this securely, here is some info:
https://phptherightway.com/#password_hashing https://paragonie.com/blog/2017/12/2018-guide-building-secure-php-software#secure-php-passwords
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently we are storing
sha1
hash of the password.Then, on login, we are comparing the hash of the submitted password with the database column.
This isn't a good idea because unsalted hashes are vulnerable to rainbow tables, and sha1 is not a good choice because it's a fast hash.
PHP has good built-in functions that handle this securely, here is some info:
https://phptherightway.com/#password_hashing https://paragonie.com/blog/2017/12/2018-guide-building-secure-php-software#secure-php-passwords
The text was updated successfully, but these errors were encountered: