Symbol: CHACHA_CTR_SIZE
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
133
CHACHA_CTR_SIZE, /* iv_len, 128-bit counter in the context */
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
186
unsigned char temp[CHACHA_CTR_SIZE] = { 0 };
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
189
if (actx->nonce_len <= CHACHA_CTR_SIZE)
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
190
memcpy(temp + CHACHA_CTR_SIZE - actx->nonce_len, iv,
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
27
unsigned int counter[CHACHA_CTR_SIZE / 4];
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
38
const unsigned char iv[CHACHA_CTR_SIZE], int enc)
crypto/openssl/crypto/evp/e_chacha20_poly1305.c
49
for (i = 0; i < CHACHA_CTR_SIZE; i += 4) {
crypto/openssl/providers/implementations/ciphers/cipher_chacha20.c
19
#define CHACHA20_IVLEN (CHACHA_CTR_SIZE)
crypto/openssl/providers/implementations/ciphers/cipher_chacha20.h
19
unsigned int counter[CHACHA_CTR_SIZE / 4];
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_hw.c
34
for (i = 0; i < CHACHA_CTR_SIZE; i += 4)
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
78
unsigned char tempiv[CHACHA_CTR_SIZE] = { 0 };
crypto/openssl/providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
89
memcpy(tempiv + CHACHA_CTR_SIZE - noncelen, bctx->oiv,
sys/crypto/openssl/ossl_chacha20.c
160
unsigned int counter[CHACHA_CTR_SIZE / 4];
sys/crypto/openssl/ossl_chacha20.c
179
crypto_read_iv(crp, counter + (CHACHA_CTR_SIZE - csp->csp_ivlen) / 4);
sys/crypto/openssl/ossl_chacha20.c
306
unsigned int counter[CHACHA_CTR_SIZE / 4];
sys/crypto/openssl/ossl_chacha20.c
326
crypto_read_iv(crp, counter + (CHACHA_CTR_SIZE - csp->csp_ivlen) / 4);
sys/crypto/openssl/ossl_chacha20.c
48
.ivsize = CHACHA_CTR_SIZE,
sys/crypto/openssl/ossl_chacha20.c
60
unsigned int counter[CHACHA_CTR_SIZE / 4];