I've just learned that PHP has a password_hash()
function, instead of manually calling a hashing algorithm on a password.
http://php.net/manual/en/function.password-hash.php
But I have two questions about the documentation.
- The first one is about the default hashing algorithm, using
PASSWORD_DEFAULT
as the algorithm. Since PHP 5.5 the algorithm isbcrypt
, and then it says:
Note that this constant is designed to change over time as new and stronger algorithms are added to PHP. For that reason, the length of the result from using this identifier can change over time. Therefore, it is recommended to store the result in a database column that can expand beyond 60 characters (255 characters would be a good choice)
How am I supposed to still keep users being able to log in after a hashing algorithm changes, if I'm only keeping the result of a hash, and the result of the password hash will become different?
- Under the
salt
option it says:
Warning The salt option has been deprecated as of PHP 7.0.0. It is now preferred to simply use the salt that is generated by default.
If the function will generate a salt, then wouldn't the resulting hash be different in two different executions for the same password? Unless the algorithm for generating salts is such that the same password would always get the same salt, but that would defeat the purpose of using salt, wouldn't it?
The
password_verify()
function will detect the hash (and salt) used to hash a specific password and act accordingly.Use that function to check whether the password input by a user is correct.