sodium_crypto_pwhash_str_verify
sodium_crypto_pwhash_str_verify
Verifies that a password matches a hash
bool **sodium_crypto_pwhash_str_verify** string $hash string $password
Checks that a password hash created using matches a given plain-text password. Note that the parameters are in the opposite order to the same parameters in the similar function.
sodium_crypto_pwhash_str``password_verify
hashpassword.parameter.hash
passwordpassword.parameter.password
Returns true if the password and hash match, or false otherwise.
Opmerking: > Hashes are calculated using the Argon2ID algorithm, providing resistance to both GPU and side-channel attacks.
sodium_crypto_pwhash_str``password_hash``password_verify