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