Home
last modified time | relevance | path

Searched refs:itav (Results 1 – 25 of 80) sorted by relevance

1234

/third_party/node/deps/openssl/openssl/crypto/cmp/
Dcmp_hdr.c189 OSSL_CMP_ITAV *itav) in ossl_cmp_hdr_generalInfo_push0_item() argument
191 if (!ossl_assert(hdr != NULL && itav != NULL)) in ossl_cmp_hdr_generalInfo_push0_item()
193 return OSSL_CMP_ITAV_push0_stack_item(&hdr->generalInfo, itav); in ossl_cmp_hdr_generalInfo_push0_item()
200 OSSL_CMP_ITAV *itav; in ossl_cmp_hdr_generalInfo_push1_items() local
206 itav = OSSL_CMP_ITAV_dup(sk_OSSL_CMP_ITAV_value(itavs, i)); in ossl_cmp_hdr_generalInfo_push1_items()
207 if (itav == NULL) in ossl_cmp_hdr_generalInfo_push1_items()
210 if (!ossl_cmp_hdr_generalInfo_push0_item(hdr, itav)) { in ossl_cmp_hdr_generalInfo_push1_items()
211 OSSL_CMP_ITAV_free(itav); in ossl_cmp_hdr_generalInfo_push1_items()
220 OSSL_CMP_ITAV *itav; in ossl_cmp_hdr_set_implicitConfirm() local
228 if ((itav = OSSL_CMP_ITAV_create(OBJ_nid2obj(NID_id_it_implicitConfirm), in ossl_cmp_hdr_set_implicitConfirm()
[all …]
Dcmp_asn.c135 OSSL_CMP_ITAV *itav; variable
137 if (type == NULL || (itav = OSSL_CMP_ITAV_new()) == NULL)
139 OSSL_CMP_ITAV_set0(itav, type, value);
140 return itav;
143 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type, in OSSL_CMP_ITAV_set0() argument
146 itav->infoType = type; in OSSL_CMP_ITAV_set0()
147 itav->infoValue.other = value; in OSSL_CMP_ITAV_set0()
150 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav) in OSSL_CMP_ITAV_get0_type() argument
152 if (itav == NULL) in OSSL_CMP_ITAV_get0_type()
154 return itav->infoType; in OSSL_CMP_ITAV_get0_type()
[all …]
Dcmp_msg.c637 int ossl_cmp_msg_gen_push0_ITAV(OSSL_CMP_MSG *msg, OSSL_CMP_ITAV *itav) in ossl_cmp_msg_gen_push0_ITAV() argument
641 if (!ossl_assert(msg != NULL && itav != NULL)) in ossl_cmp_msg_gen_push0_ITAV()
652 return OSSL_CMP_ITAV_push0_stack_item(&msg->body->value.genm, itav); in ossl_cmp_msg_gen_push0_ITAV()
659 OSSL_CMP_ITAV *itav = NULL; in ossl_cmp_msg_gen_push1_ITAVs() local
665 itav = OSSL_CMP_ITAV_dup(sk_OSSL_CMP_ITAV_value(itavs, i)); in ossl_cmp_msg_gen_push1_ITAVs()
666 if (itav == NULL in ossl_cmp_msg_gen_push1_ITAVs()
667 || !ossl_cmp_msg_gen_push0_ITAV(msg, itav)) { in ossl_cmp_msg_gen_push1_ITAVs()
668 OSSL_CMP_ITAV_free(itav); in ossl_cmp_msg_gen_push1_ITAVs()
/third_party/openssl/crypto/cmp/
Dcmp_hdr.c189 OSSL_CMP_ITAV *itav) in ossl_cmp_hdr_generalInfo_push0_item() argument
191 if (!ossl_assert(hdr != NULL && itav != NULL)) in ossl_cmp_hdr_generalInfo_push0_item()
193 return OSSL_CMP_ITAV_push0_stack_item(&hdr->generalInfo, itav); in ossl_cmp_hdr_generalInfo_push0_item()
200 OSSL_CMP_ITAV *itav; in ossl_cmp_hdr_generalInfo_push1_items() local
206 itav = OSSL_CMP_ITAV_dup(sk_OSSL_CMP_ITAV_value(itavs, i)); in ossl_cmp_hdr_generalInfo_push1_items()
207 if (itav == NULL) in ossl_cmp_hdr_generalInfo_push1_items()
210 if (!ossl_cmp_hdr_generalInfo_push0_item(hdr, itav)) { in ossl_cmp_hdr_generalInfo_push1_items()
211 OSSL_CMP_ITAV_free(itav); in ossl_cmp_hdr_generalInfo_push1_items()
220 OSSL_CMP_ITAV *itav; in ossl_cmp_hdr_set_implicitConfirm() local
228 if ((itav = OSSL_CMP_ITAV_create(OBJ_nid2obj(NID_id_it_implicitConfirm), in ossl_cmp_hdr_set_implicitConfirm()
[all …]
Dcmp_asn.c135 OSSL_CMP_ITAV *itav; variable
137 if (type == NULL || (itav = OSSL_CMP_ITAV_new()) == NULL)
139 OSSL_CMP_ITAV_set0(itav, type, value);
140 return itav;
143 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type, in OSSL_CMP_ITAV_set0() argument
146 itav->infoType = type; in OSSL_CMP_ITAV_set0()
147 itav->infoValue.other = value; in OSSL_CMP_ITAV_set0()
150 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav) in OSSL_CMP_ITAV_get0_type() argument
152 if (itav == NULL) in OSSL_CMP_ITAV_get0_type()
154 return itav->infoType; in OSSL_CMP_ITAV_get0_type()
[all …]
Dcmp_msg.c637 int ossl_cmp_msg_gen_push0_ITAV(OSSL_CMP_MSG *msg, OSSL_CMP_ITAV *itav) in ossl_cmp_msg_gen_push0_ITAV() argument
641 if (!ossl_assert(msg != NULL && itav != NULL)) in ossl_cmp_msg_gen_push0_ITAV()
652 return OSSL_CMP_ITAV_push0_stack_item(&msg->body->value.genm, itav); in ossl_cmp_msg_gen_push0_ITAV()
659 OSSL_CMP_ITAV *itav = NULL; in ossl_cmp_msg_gen_push1_ITAVs() local
665 itav = OSSL_CMP_ITAV_dup(sk_OSSL_CMP_ITAV_value(itavs, i)); in ossl_cmp_msg_gen_push1_ITAVs()
666 if (itav == NULL in ossl_cmp_msg_gen_push1_ITAVs()
667 || !ossl_cmp_msg_gen_push0_ITAV(msg, itav)) { in ossl_cmp_msg_gen_push1_ITAVs()
668 OSSL_CMP_ITAV_free(itav); in ossl_cmp_msg_gen_push1_ITAVs()
/third_party/openssl/doc/man3/
DOSSL_CMP_ITAV_set0.pod16 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
18 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
19 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
22 OSSL_CMP_ITAV *itav);
35 OSSL_CMP_ITAV_set0() sets the I<itav> with an infoType of I<type> and an
40 I<itav>.
43 the I<itav> as generic B<ASN1_TYPE> pointer.
45 OSSL_CMP_ITAV_push0_stack_item() pushes I<itav> to the stack pointed to
81 OSSL_CMP_ITAV *itav = OSSL_CMP_ITAV_create(type, val);
82 if (itav == NULL) ...
[all …]
/third_party/openssl/test/
Dcmp_hdr_test.c297 OSSL_CMP_ITAV *itav = OSSL_CMP_ITAV_new(); in execute_HDR_generalInfo_push0_item_test() local
299 if (!TEST_ptr(itav)) in execute_HDR_generalInfo_push0_item_test()
302 if (!TEST_int_eq(ossl_cmp_hdr_generalInfo_push0_item(fixture->hdr, itav), in execute_HDR_generalInfo_push0_item_test()
306 if (!TEST_true(itav == sk_OSSL_CMP_ITAV_value(fixture->hdr->generalInfo, in execute_HDR_generalInfo_push0_item_test()
326 OSSL_CMP_ITAV *itav, *pushed_itav; in execute_HDR_generalInfo_push1_items_test() local
343 if (!TEST_ptr(itav = OSSL_CMP_ITAV_create(OBJ_txt2obj(oid, 1), val))) { in execute_HDR_generalInfo_push1_items_test()
347 if (!TEST_true(OSSL_CMP_ITAV_push0_stack_item(&itavs, itav))) { in execute_HDR_generalInfo_push1_items_test()
348 OSSL_CMP_ITAV_free(itav); in execute_HDR_generalInfo_push1_items_test()
362 if (!TEST_int_eq(ASN1_TYPE_cmp(itav->infoValue.other, pushed_val), 0)) in execute_HDR_generalInfo_push1_items_test()
/third_party/node/deps/openssl/openssl/include/openssl/
Dcmp.h.in255 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
257 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
258 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
260 OSSL_CMP_ITAV *itav);
261 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
330 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
347 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/openssl/include/openssl/
Dcmp.h.in255 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
257 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
258 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
260 OSSL_CMP_ITAV *itav);
261 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
330 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
347 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/linux64-s390x/asm_avx2/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/VC-WIN32/no-asm/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/darwin-i386-cc/asm/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/darwin64-arm64-cc/asm_avx2/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/linux-armv4/no-asm/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/darwin64-x86_64-cc/asm_avx2/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/VC-WIN64A/no-asm/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/VC-WIN64A/asm_avx2/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/aix64-gcc-as/asm_avx2/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/linux-x86_64/asm_avx2/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/linux-aarch64/asm/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm_avx2/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/linux32-s390x/no-asm/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/BSD-x86_64/asm/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
/third_party/node/deps/openssl/config/archs/solaris-x86-gcc/no-asm/include/openssl/
Dcmp.h374 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
376 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
377 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
379 OSSL_CMP_ITAV *itav);
380 void OSSL_CMP_ITAV_free(OSSL_CMP_ITAV *itav);
449 int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
466 int OSSL_CMP_CTX_push0_genm_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);

1234