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);
43 $stream7_unified = sodium_crypto_stream_xchacha20_xor($left . $right, $n2, $key);
46 $stream7_left = sodium_crypto_stream_xchacha20_xor_ic($left, $n2, 0, $key);
47 $stream7_right = sodium_crypto_stream_xchacha20_xor_ic($right, $n2, 1, $key);
54 sodium_crypto_stream_xchacha20(-1, $nonce, $key);
59 sodium_crypto_stream_xchacha20($len, substr($nonce, 1), $key);
64 sodium_crypto_stream_xchacha20($len, $nonce, substr($key, 1));
69 sodium_crypto_stream_xchacha20_xor($stream, substr($nonce, 1), $key);
74 sodium_crypto_stream_xchacha20_xor($stream, $nonce, substr($key, 1));
94 sodium_crypto_stream_xchacha20(): Argument #3 ($key) must be SODIUM_CRYPTO_STREAM_XCHACHA20_KEYBYTE…
96 sodium_crypto_stream_xchacha20_xor(): Argument #3 ($key) must be SODIUM_CRYPTO_STREAM_XCHACHA20_KEY…