Lines Matching refs:propq
51 CMS_ContentInfo *CMS_ContentInfo_new_ex(OSSL_LIB_CTX *libctx, const char *propq)
56 libctx, propq);
59 ci->ctx.propq = NULL;
60 if (propq != NULL) {
61 ci->ctx.propq = OPENSSL_strdup(propq);
62 if (ci->ctx.propq == NULL) {
84 return ctx != NULL ? ctx->propq : NULL;
94 const char *propq = ossl_cms_ctx_get0_propq(ctx);
104 ossl_x509_set0_libctx(cch->d.certificate, libctx, propq);
114 CMS_ContentInfo *ossl_cms_Data_create(OSSL_LIB_CTX *libctx, const char *propq)
116 CMS_ContentInfo *cms = CMS_ContentInfo_new_ex(libctx, propq);