sodium_crypto_core_ristretto255_is_valid_point

The timeline below displays how wordpress function sodium_crypto_core_ristretto255_is_valid_point 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_is_valid_point()
 *
 * @param string $s
 * @return bool
 * @throws SodiumException
 */
function sodium_crypto_core_ristretto255_is_valid_point($s)
{
    return ParagonIE_Sodium_Compat::ristretto255_is_valid_point($s, true);
}

WordPress Version: .10

/**
 * @see ParagonIE_Sodium_Compat::ristretto255_is_valid_point()
 *
 * @param string $p
 * @return bool
 * @throws SodiumException
 */
function sodium_crypto_core_ristretto255_is_valid_point($p)
{
    return ParagonIE_Sodium_Compat::ristretto255_is_valid_point($p, true);
}