Home
last modified time | relevance | path

Searched refs:crypto_stream_chacha20_ietf_xor_ic (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/contrib/libsodium/test/default/
H A Dchacha20.c125 crypto_stream_chacha20_ietf_xor_ic(out, out, sizeof out, nonce, tests[i].ic, key); in tv_ietf()
130 crypto_stream_chacha20_ietf_xor_ic(part, out, plen, nonce, tests[i].ic, key); in tv_ietf()
152 assert(crypto_stream_chacha20_ietf_xor_ic(out, out, 0U, nonce, 1U, key) == 0); in tv_ietf()
159 crypto_stream_chacha20_ietf_xor_ic(out, out, sizeof out, nonce, 0U, key); in tv_ietf()
163 crypto_stream_chacha20_ietf_xor_ic(out, out, sizeof out, nonce, 1U, key); in tv_ietf()
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_secretstream/xchacha20poly1305/
H A Dsecretstream_xchacha20poly1305.c139 crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, in crypto_secretstream_xchacha20poly1305_push()
145 crypto_stream_chacha20_ietf_xor_ic(c, m, mlen, state->nonce, 2U, state->k); in crypto_secretstream_xchacha20poly1305_push()
215 crypto_stream_chacha20_ietf_xor_ic(block, block, sizeof block, in crypto_secretstream_xchacha20poly1305_pull()
240 crypto_stream_chacha20_ietf_xor_ic(m, c, mlen, state->nonce, 2U, state->k); in crypto_secretstream_xchacha20poly1305_pull()
/freebsd/sys/opencrypto/
H A Dxform_chacha20_poly1305.c92 error = crypto_stream_chacha20_ietf_xor_ic(out, in, in chacha20_poly1305_crypt()
110 error = crypto_stream_chacha20_ietf_xor_ic(out, in, len, in chacha20_poly1305_crypt_multi()
128 error = crypto_stream_chacha20_ietf_xor_ic(out, in, len, in chacha20_poly1305_crypt_last()
/freebsd/sys/contrib/libsodium/src/libsodium/include/sodium/
H A Dcrypto_stream_chacha20.h80 int crypto_stream_chacha20_ietf_xor_ic(unsigned char *c, const unsigned char *m,
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/
H A Daead_chacha20poly1305.c114 crypto_stream_chacha20_ietf_xor_ic(c, m, mlen, npub, 1U, k); in crypto_aead_chacha20poly1305_ietf_encrypt_detached()
294 crypto_stream_chacha20_ietf_xor_ic(m, c, mlen, npub, 1U, k); in crypto_aead_chacha20poly1305_ietf_decrypt_detached()
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_stream/chacha20/
H A Dstream_chacha20.c76 crypto_stream_chacha20_ietf_xor_ic(unsigned char *c, const unsigned char *m, in crypto_stream_chacha20_ietf_xor_ic() function
/freebsd/sys/contrib/libsodium/
H A DChangeLog271 crypto_stream_chacha20_ietf_xor() and crypto_stream_chacha20_ietf_xor_ic().