sodium_crypto_stream_xchacha20_xor_ic() –
You appear to be a bot. Output may be restricted
Description
Usage
$string = sodium_crypto_stream_xchacha20_xor_ic( $message, $nonce, $counter, $key );
Parameters
- $message
- ( string ) required –
- $nonce
- ( string ) required –
- $counter
- ( int ) required –
- $key
- ( string ) required –
Returns
string
Source
File name: wordpress/wp-includes/sodium_compat/lib/stream-xchacha20.php
Lines:
1 to 5 of 5
function sodium_crypto_stream_xchacha20_xor_ic($message, $nonce, $counter, $key) { return ParagonIE_Sodium_Compat::crypto_stream_xchacha20_xor_ic($message, $nonce, $counter, $key, true); }