sodium_crypto_core_ristretto255_scalar_negate

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

WordPress Version: .10

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