Symbol: EVP_GCM_TLS_TAG_LEN
crypto/openssl/crypto/evp/e_aes.c
1579
if (len < EVP_GCM_TLS_TAG_LEN)
crypto/openssl/crypto/evp/e_aes.c
1581
len -= EVP_GCM_TLS_TAG_LEN;
crypto/openssl/crypto/evp/e_aes.c
1586
return EVP_GCM_TLS_TAG_LEN;
crypto/openssl/crypto/evp/e_aes.c
1667
if (out != in || len < (EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN))
crypto/openssl/crypto/evp/e_aes.c
1688
len -= EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN;
crypto/openssl/crypto/evp/e_aes.c
1696
memcpy(out + len, gctx->kma.param.t.b, EVP_GCM_TLS_TAG_LEN);
crypto/openssl/crypto/evp/e_aes.c
1697
rv = len + EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN;
crypto/openssl/crypto/evp/e_aes.c
1700
EVP_GCM_TLS_TAG_LEN)) {
crypto/openssl/crypto/evp/e_aes.c
2761
if (len < EVP_GCM_TLS_TAG_LEN)
crypto/openssl/crypto/evp/e_aes.c
2763
len -= EVP_GCM_TLS_TAG_LEN;
crypto/openssl/crypto/evp/e_aes.c
2769
return EVP_GCM_TLS_TAG_LEN;
crypto/openssl/crypto/evp/e_aes.c
2889
|| len < (EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN))
crypto/openssl/crypto/evp/e_aes.c
2919
len -= EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN;
crypto/openssl/crypto/evp/e_aes.c
2959
CRYPTO_gcm128_tag(&gctx->gcm, out, EVP_GCM_TLS_TAG_LEN);
crypto/openssl/crypto/evp/e_aes.c
2960
rv = len + EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN;
crypto/openssl/crypto/evp/e_aes.c
3000
EVP_GCM_TLS_TAG_LEN);
crypto/openssl/crypto/evp/e_aes.c
3003
EVP_GCM_TLS_TAG_LEN)) {
crypto/openssl/crypto/evp/e_aria.c
365
if (len < EVP_GCM_TLS_TAG_LEN)
crypto/openssl/crypto/evp/e_aria.c
367
len -= EVP_GCM_TLS_TAG_LEN;
crypto/openssl/crypto/evp/e_aria.c
373
return EVP_GCM_TLS_TAG_LEN;
crypto/openssl/crypto/evp/e_aria.c
406
|| len < (EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN))
crypto/openssl/crypto/evp/e_aria.c
423
len -= EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN;
crypto/openssl/crypto/evp/e_aria.c
430
CRYPTO_gcm128_tag(&gctx->gcm, out, EVP_GCM_TLS_TAG_LEN);
crypto/openssl/crypto/evp/e_aria.c
431
rv = len + EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN;
crypto/openssl/crypto/evp/e_aria.c
438
EVP_GCM_TLS_TAG_LEN);
crypto/openssl/crypto/evp/e_aria.c
441
EVP_GCM_TLS_TAG_LEN)) {
crypto/openssl/engines/e_ossltest.c
765
memset(ptr, 0, EVP_GCM_TLS_TAG_LEN);
crypto/openssl/include/internal/ktls.h
410
if (length < prepend_length + EVP_GCM_TLS_TAG_LEN) {
crypto/openssl/include/internal/ktls.h
420
msg_iov.iov_len = length - prepend_length - EVP_GCM_TLS_TAG_LEN;
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
218
|| sz > EVP_GCM_TLS_TAG_LEN
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
263
if (!OSSL_PARAM_get_octet_string(p, &vp, EVP_GCM_TLS_TAG_LEN, &sz)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
490
if (len < EVP_GCM_TLS_TAG_LEN)
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
492
len -= EVP_GCM_TLS_TAG_LEN;
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
497
return EVP_GCM_TLS_TAG_LEN;
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
544
if (out != in || len < (EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN))
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
573
len -= EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN;
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
577
EVP_GCM_TLS_TAG_LEN)) {
crypto/openssl/providers/implementations/ciphers/ciphercommon_gcm.c
583
plen = len + EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN;
crypto/openssl/providers/implementations/macs/gmac_prov.c
97
return EVP_GCM_TLS_TAG_LEN;
crypto/openssl/ssl/ssl_ciph.c
2156
out = EVP_GCM_TLS_EXPLICIT_IV_LEN + EVP_GCM_TLS_TAG_LEN;
crypto/openssl/ssl/ssl_local.h
616
#define EARLY_DATA_CIPHERTEXT_OVERHEAD ((6 * (EVP_GCM_TLS_TAG_LEN + 1)) + 2)
crypto/openssl/ssl/t1_enc.c
176
taglen = EVP_GCM_TLS_TAG_LEN;
crypto/openssl/ssl/tls13_enc.c
418
*taglen = EVP_GCM_TLS_TAG_LEN;
crypto/openssl/test/evp_extra_test.c
6599
size_t taglen = EVP_GCM_TLS_TAG_LEN;
crypto/openssl/test/tls13encryptiontest.c
230
rec->data = rec->input = OPENSSL_malloc(ptlen + EVP_GCM_TLS_TAG_LEN);
crypto/openssl/test/tls13encryptiontest.c
314
EVP_GCM_TLS_TAG_LEN, 0, NULL, NULL, NULL, NULL, NULL,
crypto/openssl/test/tls13encryptiontest.c
337
EVP_GCM_TLS_TAG_LEN, 0, NULL, NULL, NULL, NULL, NULL,