sodium_crypto_core_ristretto255_from_hash

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

WordPress Version: 6.1

/**
 * @see ParagonIE_Sodium_Compat::ristretto255_from_hash()
 *
 * @param string $s
 * @return string
 * @throws SodiumException
 */
function sodium_crypto_core_ristretto255_from_hash($s)
{
    return ParagonIE_Sodium_Compat::ristretto255_from_hash($s, true);
}

WordPress Version: .10

/**
 * @see ParagonIE_Sodium_Compat::ristretto255_from_hash()
 *
 * @param string $r
 * @return string
 * @throws SodiumException
 */
function sodium_crypto_core_ristretto255_from_hash($r)
{
    return ParagonIE_Sodium_Compat::ristretto255_from_hash($r, true);
}