mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
f0b4b44d1e
The latest version of sodium_compat includes support for AEGIS and preliminary support for PHP 8.4. Additionally, the PHP 8.2+ `SensitiveParameter` attribute is now applied where appropriate to functions in the public API. This attribute is used to mark parameters that are sensitive and should be redacted from stack traces. References: * [https://github.com/paragonie/sodium_compat/releases/tag/v1.21.0 sodium_compat 1.21.0 release notes] * [https://github.com/paragonie/sodium_compat/releases/tag/v1.21.1 sodium_compat 1.21.1 release notes] * [https://github.com/paragonie/sodium_compat/compare/v1.20.0...v1.21.1 Full list of changes in sodium_compat 1.21.1] Follow-up to [49741], [51002], [51591], [52988], [54150], [54310], [55699]. Props jrf, dd32, paragoninitiativeenterprises. Fixes #61686. Built from https://develop.svn.wordpress.org/trunk@58752 git-svn-id: http://core.svn.wordpress.org/trunk@58154 1a063a9b-81f0-0310-95a4-ce76da25c4cd
75 lines
2.0 KiB
PHP
75 lines
2.0 KiB
PHP
<?php
|
|
|
|
if (!is_callable('sodium_crypto_stream_xchacha20')) {
|
|
/**
|
|
* @see ParagonIE_Sodium_Compat::crypto_stream_xchacha20()
|
|
* @param int $len
|
|
* @param string $nonce
|
|
* @param string $key
|
|
* @return string
|
|
* @throws SodiumException
|
|
* @throws TypeError
|
|
*/
|
|
function sodium_crypto_stream_xchacha20(
|
|
$len,
|
|
$nonce,
|
|
#[\SensitiveParameter]
|
|
$key
|
|
) {
|
|
return ParagonIE_Sodium_Compat::crypto_stream_xchacha20($len, $nonce, $key, true);
|
|
}
|
|
}
|
|
if (!is_callable('sodium_crypto_stream_xchacha20_keygen')) {
|
|
/**
|
|
* @see ParagonIE_Sodium_Compat::crypto_stream_xchacha20_keygen()
|
|
* @return string
|
|
* @throws Exception
|
|
*/
|
|
function sodium_crypto_stream_xchacha20_keygen()
|
|
{
|
|
return ParagonIE_Sodium_Compat::crypto_stream_xchacha20_keygen();
|
|
}
|
|
}
|
|
if (!is_callable('sodium_crypto_stream_xchacha20_xor')) {
|
|
/**
|
|
* @see ParagonIE_Sodium_Compat::crypto_stream_xchacha20_xor()
|
|
* @param string $message
|
|
* @param string $nonce
|
|
* @param string $key
|
|
* @return string
|
|
* @throws SodiumException
|
|
* @throws TypeError
|
|
*/
|
|
function sodium_crypto_stream_xchacha20_xor(
|
|
#[\SensitiveParameter]
|
|
$message,
|
|
$nonce,
|
|
#[\SensitiveParameter]
|
|
$key
|
|
) {
|
|
return ParagonIE_Sodium_Compat::crypto_stream_xchacha20_xor($message, $nonce, $key, true);
|
|
}
|
|
}
|
|
if (!is_callable('sodium_crypto_stream_xchacha20_xor_ic')) {
|
|
/**
|
|
* @see ParagonIE_Sodium_Compat::crypto_stream_xchacha20_xor_ic()
|
|
* @param string $message
|
|
* @param string $nonce
|
|
* @param int $counter
|
|
* @param string $key
|
|
* @return string
|
|
* @throws SodiumException
|
|
* @throws TypeError
|
|
*/
|
|
function sodium_crypto_stream_xchacha20_xor_ic(
|
|
#[\SensitiveParameter]
|
|
$message,
|
|
$nonce,
|
|
$counter,
|
|
#[\SensitiveParameter]
|
|
$key
|
|
) {
|
|
return ParagonIE_Sodium_Compat::crypto_stream_xchacha20_xor_ic($message, $nonce, $counter, $key, true);
|
|
}
|
|
}
|