PHP 8.1.28 Released!

sodium_crypto_pwhash_str_verify

(PHP 7 >= 7.2.0, PHP 8)

sodium_crypto_pwhash_str_verifyVerifies that a password matches a hash

Açıklama

sodium_crypto_pwhash_str_verify(string $hash, string $password): bool

Checks 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.

Bağımsız Değişkenler

hash

password_hash() işleviyle oluşturulan aş.

password

Kullanıcı parolası.

Dönen Değerler

Returns true if the password and hash match, or false otherwise.

Notlar

Bilginize:

Hashes are calculated using the Argon2ID algorithm, providing resistance to both GPU and side-channel attacks.

Ayrıca Bakınız

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top