sodium_crypto_pwhash_str_needs_rehash

The timeline below displays how wordpress function sodium_crypto_pwhash_str_needs_rehash has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 3.1

/**
 * @see ParagonIE_Sodium_Compat::crypto_pwhash_str_needs_rehash()
 * @param string $hash
 * @param int $opslimit
 * @param int $memlimit
 * @return bool
 *
 * @throws SodiumException
 */
function sodium_crypto_pwhash_str_needs_rehash($hash, $opslimit, $memlimit)
{
    return ParagonIE_Sodium_Compat::crypto_pwhash_str_needs_rehash($hash, $opslimit, $memlimit);
}