Symbol: EVP_CCM_TLS_EXPLICIT_IV_LEN
crypto/openssl/crypto/evp/e_aes.c
1979
|| len < (EVP_CCM_TLS_EXPLICIT_IV_LEN + (size_t)cctx->aes.ccm.m))
crypto/openssl/crypto/evp/e_aes.c
1984
memcpy(out, buf, EVP_CCM_TLS_EXPLICIT_IV_LEN);
crypto/openssl/crypto/evp/e_aes.c
1987
len -= EVP_CCM_TLS_EXPLICIT_IV_LEN + cctx->aes.ccm.m;
crypto/openssl/crypto/evp/e_aes.c
1992
memcpy(ivec + EVP_CCM_TLS_FIXED_IV_LEN, in, EVP_CCM_TLS_EXPLICIT_IV_LEN);
crypto/openssl/crypto/evp/e_aes.c
1998
in += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aes.c
1999
out += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aes.c
2006
return len + EVP_CCM_TLS_EXPLICIT_IV_LEN + cctx->aes.ccm.m;
crypto/openssl/crypto/evp/e_aes.c
2188
if (len < EVP_CCM_TLS_EXPLICIT_IV_LEN)
crypto/openssl/crypto/evp/e_aes.c
2192
len -= EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aes.c
3411
if (len < EVP_CCM_TLS_EXPLICIT_IV_LEN)
crypto/openssl/crypto/evp/e_aes.c
3413
len -= EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aes.c
3538
if (out != in || len < (EVP_CCM_TLS_EXPLICIT_IV_LEN + (size_t)cctx->M))
crypto/openssl/crypto/evp/e_aes.c
3543
EVP_CCM_TLS_EXPLICIT_IV_LEN);
crypto/openssl/crypto/evp/e_aes.c
3546
EVP_CCM_TLS_EXPLICIT_IV_LEN);
crypto/openssl/crypto/evp/e_aes.c
3548
len -= EVP_CCM_TLS_EXPLICIT_IV_LEN + cctx->M;
crypto/openssl/crypto/evp/e_aes.c
3556
in += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aes.c
3557
out += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aes.c
3565
return len + EVP_CCM_TLS_EXPLICIT_IV_LEN + cctx->M;
crypto/openssl/crypto/evp/e_aria.c
567
if (len < EVP_CCM_TLS_EXPLICIT_IV_LEN)
crypto/openssl/crypto/evp/e_aria.c
569
len -= EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aria.c
643
if (out != in || len < (EVP_CCM_TLS_EXPLICIT_IV_LEN + (size_t)cctx->M))
crypto/openssl/crypto/evp/e_aria.c
648
EVP_CCM_TLS_EXPLICIT_IV_LEN);
crypto/openssl/crypto/evp/e_aria.c
651
EVP_CCM_TLS_EXPLICIT_IV_LEN);
crypto/openssl/crypto/evp/e_aria.c
653
len -= EVP_CCM_TLS_EXPLICIT_IV_LEN + cctx->M;
crypto/openssl/crypto/evp/e_aria.c
661
in += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aria.c
662
out += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/crypto/evp/e_aria.c
669
return len + EVP_CCM_TLS_EXPLICIT_IV_LEN + cctx->M;
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
33
if (len < EVP_CCM_TLS_EXPLICIT_IV_LEN)
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
346
if (in == NULL || out != in || len < EVP_CCM_TLS_EXPLICIT_IV_LEN + ctx->m)
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
351
memcpy(out, ctx->buf, EVP_CCM_TLS_EXPLICIT_IV_LEN);
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
353
memcpy(ctx->iv + EVP_CCM_TLS_FIXED_IV_LEN, in, EVP_CCM_TLS_EXPLICIT_IV_LEN);
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
355
len -= EVP_CCM_TLS_EXPLICIT_IV_LEN + ctx->m;
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
364
in += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
365
out += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
369
olen = len + EVP_CCM_TLS_EXPLICIT_IV_LEN + ctx->m;
crypto/openssl/providers/implementations/ciphers/ciphercommon_ccm.c
37
len -= EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/ssl/record/methods/ktls_meth.c
190
== EVP_CCM_TLS_EXPLICIT_IV_LEN))
crypto/openssl/ssl/record/methods/ktls_meth.c
253
== EVP_CCM_TLS_EXPLICIT_IV_LEN))
crypto/openssl/ssl/record/methods/tls1_meth.c
154
eivlen = EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/ssl/record/methods/tls1_meth.c
394
recs[0].data += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/ssl/record/methods/tls1_meth.c
395
recs[0].input += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/ssl/record/methods/tls1_meth.c
444
recs[ctr].data += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/ssl/record/methods/tls1_meth.c
445
recs[ctr].input += EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/ssl/record/methods/tls1_meth.c
446
recs[ctr].length -= EVP_CCM_TLS_EXPLICIT_IV_LEN;
crypto/openssl/ssl/ssl_ciph.c
2158
out = EVP_CCM_TLS_EXPLICIT_IV_LEN + 16;
crypto/openssl/ssl/ssl_ciph.c
2160
out = EVP_CCM_TLS_EXPLICIT_IV_LEN + 8;