sodium_crypto_pwhash_str_verify() WP 1.0
No Hooks.
Return
true|false
. Null. Nothing.
Usage
sodium_crypto_pwhash_str_verify( $passwd, $hash );
- $passwd(string) (required)
- -
- $hash(string) (required)
- -
Notes
- See: ParagonIE_Sodium_Compat::crypto_pwhash_str_verify()
Code of sodium_crypto_pwhash_str_verify() sodium crypto pwhash str verify WP 5.7
function sodium_crypto_pwhash_str_verify($passwd, $hash)
{
return ParagonIE_Sodium_Compat::crypto_pwhash_str_verify($passwd, $hash);
}