I'm using the password_hash function to secure the user's password on the login page. However, on the register page I ask the user to prompt his password twice, but I can't compare both hashes cause they are different even if the password is the same.
Should I compare both passwords as strings and then hash the password? or what is the best practice to do it?
The
password_hash
is used to hash a password, generating a new salt if necessary (you may pass your own salt, but this is not necessary), while thepassword_verify
function is used to compare them (this function uses the salt stored alongside the hash in order to perform the proper comparison).When creating the passwords, the user provides it twice on plaintext, so all you need to check is
$password1 == $password2
.If you wish to verify the password obtained from the database, you need to do:
You could compare the passwords in the register page the same way, but there's no need.