password_verify Verifies that a password matches a hash &reftitle.description; boolpassword_verify stringpassword stringhash 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. This function is safe against timing attacks. &reftitle.parameters; password &password.parameter.password; hash &password.parameter.hash; &reftitle.returnvalues; Returns &true; if the password and hash match, or &false; otherwise. &reftitle.examples; <function>password_verify</function> example ]]> &example.outputs; &reftitle.seealso; password_hash userland implementation sodium_crypto_pwhash_str_verify