Symbol: ChaCha20_ctr32
crypto/openssl/crypto/chacha/chacha_enc.c
97
void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp, size_t len,
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
107
ChaCha20_ctr32(out, inp, blocks, key->key.d, key->counter);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
119
ChaCha20_ctr32(key->buf, key->buf, CHACHA_BLK_SIZE,
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
234
ChaCha20_ctr32(buf, zero, buf_len, actx->key.key.d,
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
259
ChaCha20_ctr32(buf, zero, (buf_len = 2 * CHACHA_BLK_SIZE),
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
291
ChaCha20_ctr32(buf, zero, (buf_len = CHACHA_BLK_SIZE),
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
303
ChaCha20_ctr32(out, in, plen, actx->key.key.d, actx->key.counter);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
307
ChaCha20_ctr32(out, in, plen, actx->key.key.d, actx->key.counter);
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
378
ChaCha20_ctr32(actx->key.buf, zero, CHACHA_BLK_SIZE,
crypto/openssl/include/crypto/chacha.h
27
void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_hw.c
104
ChaCha20_ctr32(ctx->buf, ctx->buf, CHACHA_BLK_SIZE,
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_hw.c
92
ChaCha20_ctr32(out, in, blocks, ctx->key.d, ctx->counter);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
136
ChaCha20_ctr32(buf, zero, buf_len, ctx->chacha.key.d, ctx->chacha.counter);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
160
ChaCha20_ctr32(buf, zero, (buf_len = 2 * CHACHA_BLK_SIZE),
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
192
ChaCha20_ctr32(buf, zero, (buf_len = CHACHA_BLK_SIZE),
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
204
ChaCha20_ctr32(out, in, plen, ctx->chacha.key.d, ctx->chacha.counter);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
208
ChaCha20_ctr32(out, in, plen, ctx->chacha.key.d, ctx->chacha.counter);
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
288
ChaCha20_ctr32(ctx->chacha.buf, zero, CHACHA_BLK_SIZE,
crypto/openssl/test/chacha_internal_test.c
168
ChaCha20_ctr32(buf, buf, i, key, ivp);
sys/crypto/openssl/ossl_chacha.h
26
void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp,
sys/crypto/openssl/ossl_chacha20.c
118
ChaCha20_ctr32(out, in, todo, key, counter);
sys/crypto/openssl/ossl_chacha20.c
145
ChaCha20_ctr32(block, block, CHACHA_BLK_SIZE, key, counter);
sys/crypto/openssl/ossl_chacha20.c
187
ChaCha20_ctr32(block, block, sizeof(block), key, counter);
sys/crypto/openssl/ossl_chacha20.c
246
ChaCha20_ctr32(out, in, todo, key, counter);
sys/crypto/openssl/ossl_chacha20.c
274
ChaCha20_ctr32(block, block, CHACHA_BLK_SIZE, key, counter);
sys/crypto/openssl/ossl_chacha20.c
334
ChaCha20_ctr32(block, block, sizeof(block), key, counter);
sys/crypto/openssl/ossl_chacha20.c
415
ChaCha20_ctr32(out, in, todo, key, counter);
sys/crypto/openssl/ossl_chacha20.c
442
ChaCha20_ctr32(block, block, CHACHA_BLK_SIZE, key, counter);
sys/crypto/openssl/ossl_ppc.c
124
void ChaCha20_ctr32(unsigned char *out, const unsigned char *inp,