sodium_crypto_stream_xor() WP 1.0
Хуков нет.
Возвращает
Строку
. Null. Ничего.
Использование
sodium_crypto_stream_xor( $message, $nonce, $key );
- $message(строка) (обязательный)
- -
- $nonce(строка) (обязательный)
- -
- $key(строка) (обязательный)
- -
Заметки
- Смотрите: ParagonIE_Sodium_Compat::crypto_stream_xor()
Код sodium_crypto_stream_xor() sodium crypto stream xor WP 5.7
function sodium_crypto_stream_xor($message, $nonce, $key)
{
return ParagonIE_Sodium_Compat::crypto_stream_xor($message, $nonce, $key);
}