sodium_crypto_stream_xchacha20_xor() –

You appear to be a bot. Output may be restricted

Description

Usage

$string = sodium_crypto_stream_xchacha20_xor( $message, $nonce, $key );

Parameters

$message
( string ) required
$nonce
( string ) required
$key
( string ) required

Returns

string

Source

File name: wordpress/wp-includes/sodium_compat/lib/stream-xchacha20.php
Lines:

1 to 4 of 4
    function sodium_crypto_stream_xchacha20_xor($message, $nonce, $key)
    {
        return ParagonIE_Sodium_Compat::crypto_stream_xchacha20_xor($message, $nonce, $key, true);
    }
 

 View on GitHub View on Trac