Lines Matching defs:libctx
105 if (!ossl_x509_set0_libctx(ret, old->libctx, old->propq))
111 OSSL_LIB_CTX **libctx = exarg;
113 *libctx = ret->libctx;
143 * asn1 object and it needs a libctx to operate.
146 int ossl_x509_set0_libctx(X509 *x, OSSL_LIB_CTX *libctx, const char *propq)
149 x->libctx = libctx;
161 X509 *X509_new_ex(OSSL_LIB_CTX *libctx, const char *propq)
165 cert = (X509 *)ASN1_item_new_ex(X509_it(), libctx, propq);
166 if (!ossl_x509_set0_libctx(cert, libctx, propq)) {