sodium_crypto_stream

Advertisement

Syntax Syntax

sodium_crypto_stream( int $len, string $nonce, string $key )

Parameters Parameters

$len

(Required)

$nonce

(Required)

$key

(Required)

Return Return

(string)

Source Source

File: wp-includes/sodium_compat/lib/php72compat.php

    function sodium_crypto_stream($len, $nonce, $key)
    {
        return ParagonIE_Sodium_Compat::crypto_stream($len, $nonce, $key);
    }

Advertisement

See also See also

Advertisement

Leave a Reply