sodium_crypto_core_ristretto255_scalar_sub

The timeline below displays how wordpress function sodium_crypto_core_ristretto255_scalar_sub 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_sub()
 *
 * @param string $x
 * @param string $y
 * @return string
 * @throws SodiumException
 */
function sodium_crypto_core_ristretto255_scalar_sub($x, $y)
{
    return ParagonIE_Sodium_Compat::ristretto255_scalar_sub($x, $y, true);
}

WordPress Version: .10

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