| /src/external/mpl/bind/dist/lib/dns/rdata/generic/ |
| caa_257.h | 23 uint8_t tag_len; member in struct:dns_rdata_caa
|
| caa_257.c | 457 REQUIRE(caa->tag != NULL && caa->tag_len != 0); 471 RETERR(uint8_tobuffer(caa->tag_len, target)); 477 region.length = caa->tag_len; 516 caa->tag_len = uint8_fromregion(&sr); 522 INSIST(sr.length >= caa->tag_len); 523 caa->tag = mem_maybedup(mctx, sr.base, caa->tag_len); 524 isc_region_consume(&sr, caa->tag_len);
|
| /src/external/mpl/dhcp/bind/dist/lib/dns/rdata/generic/ |
| caa_257.h | 24 uint8_t tag_len; member in struct:dns_rdata_caa
|
| caa_257.c | 458 REQUIRE(caa->tag != NULL && caa->tag_len != 0); 472 RETERR(uint8_tobuffer(caa->tag_len, target)); 478 region.length = caa->tag_len; 525 caa->tag_len = uint8_fromregion(&sr); 531 if (sr.length < caa->tag_len) { 534 caa->tag = mem_maybedup(mctx, sr.base, caa->tag_len); 538 isc_region_consume(&sr, caa->tag_len);
|
| /src/external/bsd/tcpdump/dist/ |
| print-pppoe.c | 143 u_short tag_type = 0xffff, tag_len; local 153 tag_len = GET_BE_U_2(p + 2); 157 if (tag_len) { 164 ND_TCHECK_LEN(p, tag_len); 165 for (v = p; v < p + tag_len && tag_str_len < MAXTAGPRINT-1; v++) 184 for (v=p; v<p+tag_len; v++) { 195 p += tag_len;
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/ciphers/ |
| cipher_chacha20_poly1305.h | 30 size_t tag_len; member in struct:__anon509
|
| ciphercommon_gcm_hw.c | 52 unsigned char *out, unsigned char *tag, size_t tag_len)
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/ciphers/ |
| cipher_chacha20_poly1305.h | 28 size_t tag_len; member in struct:__anon1573
|
| ciphercommon_gcm_hw.c | 53 unsigned char *out, unsigned char *tag, size_t tag_len)
|
| /src/external/bsd/libevent/dist/ |
| event_tagging.c | 551 int tag_len; local 554 if ((tag_len = evtag_unmarshal_header(src, &tag)) < 0 || 558 if ((size_t)tag_len != len) 570 int tag_len; local 572 if ((tag_len = evtag_unmarshal_header(evbuf, &tag)) == -1 || 576 *pstring = mm_malloc(tag_len + 1); 581 evbuffer_remove(evbuf, *pstring, tag_len); 582 (*pstring)[tag_len] = '\0';
|
| /src/external/bsd/ntp/dist/sntp/libevent/ |
| event_tagging.c | 549 int tag_len; local 552 if ((tag_len = evtag_unmarshal_header(src, &tag)) < 0 || 556 if ((size_t)tag_len != len) 568 int tag_len; local 570 if ((tag_len = evtag_unmarshal_header(evbuf, &tag)) == -1 || 574 *pstring = mm_malloc(tag_len + 1); 579 evbuffer_remove(evbuf, *pstring, tag_len); 580 (*pstring)[tag_len] = '\0';
|
| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| quic_record_shared.h | 69 uint32_t tag_len; member in struct:ossl_qrl_enc_level_st
|
| quic_record_tx.c | 410 size_t tag_len; local 421 tag_len = ossl_qrl_get_suite_cipher_tag_len(el->suite_id); 423 *ciphertext_len = plaintext_len + tag_len; 434 size_t tag_len; local 441 tag_len = ossl_qrl_get_suite_cipher_tag_len(el->suite_id); 443 if (ciphertext_len <= tag_len) { 448 *plaintext_len = ciphertext_len - tag_len; 581 el->tag_len, txe_data(txe) + txe->data_len) 587 txe->data_len += el->tag_len;
|
| quic_port.c | 951 size_t tag_len; local 954 if ((tag_len = EVP_CIPHER_CTX_get_tag_length(port->token_ctx)) == 0 958 *ct_len = iv_len + pt_len + tag_len + QUIC_RETRY_INTEGRITY_TAG_LEN; 971 || !EVP_CIPHER_CTX_ctrl(port->token_ctx, EVP_CTRL_GCM_GET_TAG, tag_len, tag)) 1001 size_t tag_len; local 1004 if ((tag_len = EVP_CIPHER_CTX_get_tag_length(port->token_ctx)) == 0 1009 if (ct_len < (iv_len + tag_len) || ct_len > ENCRYPTED_TOKEN_MAX_LEN) 1012 *pt_len = ct_len - iv_len - tag_len; 1019 tag = ciphertext + ct_len - tag_len; 1023 ct_len - iv_len - tag_len) [all...] |
| /src/crypto/external/apache2/openssl/dist/test/ |
| aesgcmtest.c | 39 unsigned char *tag, int *tag_len) 46 *tag_len = 16; 72 int ct_len, const unsigned char *tag, int tag_len) 93 tag_len, (void *)tag)
|
| acvp_test.c | 927 const unsigned char *tag, size_t tag_len, 945 || !TEST_int_gt(EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, tag_len, 964 tag_len, out + out_len), 967 || !TEST_mem_eq(out + out_len, tag_len, tag, tag_len)) 986 const size_t tag_len = tst->ct_len - tst->pt_len; local 987 const size_t ct_len = tst->ct_len - tag_len; 998 tst->ct, ct_len, tag, tag_len, enc, pass) 1002 tst->pt, tst->pt_len, tag, tag_len, !enc, pass) 1008 tag - 1, tag_len, !enc, !pass) [all...] |
| /src/crypto/external/bsd/openssl/dist/test/ |
| aesgcmtest.c | 39 unsigned char *tag, int *tag_len) 46 *tag_len = 16; 67 int ct_len, const unsigned char *tag, int tag_len) 85 tag_len, (void *)tag) > 0)
|
| acvp_test.c | 722 const unsigned char *tag, size_t tag_len, 739 || !TEST_int_gt(EVP_CIPHER_CTX_ctrl(ctx, EVP_CTRL_AEAD_SET_TAG, tag_len, 757 tag_len, out + out_len), 0) 759 || !TEST_mem_eq(out + out_len, tag_len, tag, tag_len)) 778 const size_t tag_len = tst->ct_len - tst->pt_len; local 779 const size_t ct_len = tst->ct_len - tag_len; 790 tst->ct, ct_len, tag, tag_len, enc, pass) 794 tst->pt, tst->pt_len, tag, tag_len, !enc, pass) 800 tag - 1, tag_len, !enc, !pass) [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/x509/ |
| v3_cpols.c | 35 static int displaytext_str2tag(const char *tagstr, unsigned int *tag_len); 264 static int displaytext_str2tag(const char *tagstr, unsigned int *tag_len) 268 *tag_len = 0; 273 *tag_len = len; 286 *tag_len = 0; 294 unsigned int tag_len; 318 tag = displaytext_str2tag(value, &tag_len); 323 if (tag_len != 0) 324 value += tag_len + 1;
|
| /src/crypto/external/bsd/openssl/dist/crypto/x509/ |
| v3_cpols.c | 35 static int displaytext_str2tag(const char *tagstr, unsigned int *tag_len); 254 static int displaytext_str2tag(const char *tagstr, unsigned int *tag_len) 258 *tag_len = 0; 263 *tag_len = len; 276 *tag_len = 0; 284 unsigned int tag_len; 304 tag = displaytext_str2tag(value, &tag_len); 307 if (tag_len != 0) 308 value += tag_len + 1;
|
| /src/crypto/external/bsd/openssl.old/dist/crypto/x509v3/ |
| v3_cpols.c | 34 static int displaytext_str2tag(const char *tagstr, unsigned int *tag_len); 257 static int displaytext_str2tag(const char *tagstr, unsigned int *tag_len) 261 *tag_len = 0; 266 *tag_len = len; 279 *tag_len = 0; 287 unsigned int tag_len; 306 tag = displaytext_str2tag(value, &tag_len); 309 if (tag_len != 0) 310 value += tag_len + 1;
|
| /src/crypto/external/apache2/openssl/dist/providers/implementations/include/prov/ |
| ciphercommon_gcm.h | 115 unsigned char *out, unsigned char *tag, size_t tag_len);
|
| /src/crypto/external/bsd/openssl/dist/providers/implementations/include/prov/ |
| ciphercommon_gcm.h | 120 unsigned char *out, unsigned char *tag, size_t tag_len);
|
| /src/crypto/external/apache2/openssl/dist/crypto/cms/ |
| cms_enc.c | 179 aparams.tag_len = EVP_CIPHER_CTX_get_tag_length(ctx); 180 if (aparams.tag_len <= 0)
|
| /src/crypto/external/bsd/openssl/dist/crypto/cms/ |
| cms_enc.c | 177 aparams.tag_len = EVP_CIPHER_CTX_get_tag_length(ctx); 178 if (aparams.tag_len <= 0)
|