crypto_stream

Advertisement

Syntax Syntax

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/sodium_compat.php

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

Advertisement

See also See also

Advertisement

Leave a Reply