Sodium
crypto_stream_xor() WP 1.0
No Hooks.
Return
String
. Null. Nothing.
Usage
crypto_stream_xor( $message, $nonce, $key );
- $message(string) (required)
- -
- $nonce(string) (required)
- -
- $key(string) (required)
- -
Notes
- See: ParagonIE_Sodium_Compat::crypto_stream_xor()
Code of crypto_stream_xor() crypto stream xor WP 5.7
function crypto_stream_xor($message, $nonce, $key)
{
return ParagonIE_Sodium_Compat::crypto_stream_xor($message, $nonce, $key);
}