Lines Matching defs:nonce

8 …o_aead_aes256gcm_decrypt(string $ciphertext, string $additional_data, string $nonce, string $key):…
10 …ypto_aead_aes256gcm_encrypt(string $message, string $additional_data, string $nonce, string $key):…
15 …chacha20poly1305_decrypt(string $ciphertext, string $additional_data, string $nonce, string $key):…
17 …ad_chacha20poly1305_encrypt(string $message, string $additional_data, string $nonce, string $key):…
21 …a20poly1305_ietf_decrypt(string $ciphertext, string $additional_data, string $nonce, string $key):…
23 …acha20poly1305_ietf_encrypt(string $message, string $additional_data, string $nonce, string $key):…
28 …a20poly1305_ietf_decrypt(string $ciphertext, string $additional_data, string $nonce, string $key):…
32 …acha20poly1305_ietf_encrypt(string $message, string $additional_data, string $nonce, string $key):…
41 function sodium_crypto_box(string $message, string $nonce, string $key_pair): string {}
49 function sodium_crypto_box_open(string $ciphertext, string $nonce, string $key_pair): string|false …
146 function sodium_crypto_secretbox(string $message, string $nonce, string $key): string {}
150 function sodium_crypto_secretbox_open(string $ciphertext, string $nonce, string $key): string|false…
196 function sodium_crypto_stream(int $length, string $nonce, string $key): string {}
200 function sodium_crypto_stream_xor(string $message, string $nonce, string $key): string {}
203 function sodium_crypto_stream_xchacha20(int $length, string $nonce, string $key): string {}
207 function sodium_crypto_stream_xchacha20_xor(string $message, string $nonce, string $key): string {}