Sodium
crypto_pwhash() WP 1.0
No Hooks.
Return
String
. Null. Nothing.
Usage
crypto_pwhash( $outlen, $passwd, $salt, $opslimit, $memlimit );
- $outlen(int) (required)
- -
- $passwd(string) (required)
- -
- $salt(string) (required)
- -
- $opslimit(int) (required)
- -
- $memlimit(int) (required)
- -
Notes
- See: ParagonIE_Sodium_Compat::crypto_pwhash()
Code of crypto_pwhash() crypto pwhash WP 5.7
function crypto_pwhash($outlen, $passwd, $salt, $opslimit, $memlimit)
{
return ParagonIE_Sodium_Compat::crypto_pwhash($outlen, $passwd, $salt, $opslimit, $memlimit);
}