sodium_crypto_pwhash_str_verify
(PHP 7 >= 7.2.0, PHP 8)
sodium_crypto_pwhash_str_verify — Verifies that a password matches a hash
Beschreibung
$hash
, string $password
): boolChecks that a password hash created using sodium_crypto_pwhash_str() matches a given plain-text password. Note that the parameters are in the opposite order to the same parameters in the similar password_verify() function.
Parameter-Liste
-
hash
-
Ein Hash, der durch password_hash() erzeugt wurde.
-
password
-
Das Passwort des Benutzers.
Rückgabewerte
Returns true
if the password and hash match, or false
otherwise.
Anmerkungen
Hinweis:
Hashes are calculated using the Argon2ID algorithm, providing resistance to both GPU and side-channel attacks.
Siehe auch
- sodium_crypto_pwhash_str() - Get an ASCII-encoded hash
- password_hash() - Erstellt einen Passwort-Hash
- password_verify() - Überprüft, ob ein Passwort und ein Hash zusammenpassen