I am using the password_hash()
function.
Now it works to hash the password, but how do I verify it?
I am using the password_hash()
function.
Now it works to hash the password, but how do I verify it?
boolean password_verify ( string $password , string $hash )
Verifies that the given hash matches the given password.
Note that password_hash()
returns the algorithm, cost and salt as part of the returned hash. Therefore, all information that's needed to verify the hash is included in it. This allows the verify function to verify the hash without needing separate storage for the salt or algorithm information.
password The user's password.
hash
A hash created by password_hash()
Well the function for this option is called:
password_verify
.How it does work is this;