Lines Matching refs:itav
19 void OSSL_CMP_ITAV_set0(OSSL_CMP_ITAV *itav, ASN1_OBJECT *type,
21 ASN1_OBJECT *OSSL_CMP_ITAV_get0_type(const OSSL_CMP_ITAV *itav);
22 ASN1_TYPE *OSSL_CMP_ITAV_get0_value(const OSSL_CMP_ITAV *itav);
24 OSSL_CMP_ITAV *itav);
27 int OSSL_CMP_ITAV_get0_certProfile(const OSSL_CMP_ITAV *itav,
39 OSSL_CMP_ITAV_set0() sets the I<itav> with an infoType of I<type> and an
44 I<itav>.
47 the I<itav> as generic B<ASN1_TYPE> pointer.
49 OSSL_CMP_ITAV_push0_stack_item() pushes I<itav> to the stack pointed to
58 list of certificate profile names contained in the infoValue field of I<itav>.
60 It is an error if the infoType of I<itav> is not B<certProfile>.
101 OSSL_CMP_ITAV *itav = OSSL_CMP_ITAV_create(type, val);
102 if (itav == NULL) ...
104 if (!OSSL_CMP_CTX_push0_geninfo_ITAV(ctx, itav)) {
105 OSSL_CMP_ITAV_free(itav); /* also frees type and val */
111 OSSL_CMP_CTX_free(ctx); /* also frees itav */