Lines Matching refs:key
10 $key = sodium_crypto_stream_xchacha20_keygen();
13 $stream = sodium_crypto_stream_xchacha20($len, $nonce, $key);
16 $stream2 = sodium_crypto_stream_xchacha20($len, $nonce, $key);
19 $stream3 = sodium_crypto_stream_xchacha20($len, $nonce, $key);
21 $key = sodium_crypto_stream_keygen();
22 $stream4 = sodium_crypto_stream_xchacha20($len, $nonce, $key);
31 $stream5 = sodium_crypto_stream_xchacha20_xor($stream, $nonce, $key);
33 $stream6 = sodium_crypto_stream_xchacha20_xor($stream5, $nonce, $key);
38 sodium_crypto_stream_xchacha20(-1, $nonce, $key);
43 sodium_crypto_stream_xchacha20($len, substr($nonce, 1), $key);
48 sodium_crypto_stream_xchacha20($len, $nonce, substr($key, 1));
53 sodium_crypto_stream_xchacha20_xor($stream, substr($nonce, 1), $key);
58 sodium_crypto_stream_xchacha20_xor($stream, $nonce, substr($key, 1));
76 sodium_crypto_stream_xchacha20(): Argument #3 ($key) must be SODIUM_CRYPTO_STREAM_XCHACHA20_KEYBYTE…
78 sodium_crypto_stream_xchacha20_xor(): Argument #3 ($key) must be SODIUM_CRYPTO_STREAM_XCHACHA20_KEY…