Lines Matching defs:exts
123 const STACK_OF(X509_EXTENSION) *exts)
130 for (i = 0; i < sk_X509_EXTENSION_num(exts); i++) {
131 X509_EXTENSION *ext = sk_X509_EXTENSION_value(exts, i);
287 X509_EXTENSIONS *exts = NULL;
326 && (exts = X509_REQ_get_extensions(ctx->p10CSR)) == NULL)
332 && !add1_extension(&exts, NID_subject_alt_name, crit, default_sans))
335 && !add_extensions(&exts, ctx->reqExtensions))
338 && !add1_extension(&exts, NID_subject_alt_name,
342 && !add1_extension(&exts, NID_certificate_policies,
345 if (!OSSL_CRMF_MSG_set0_extensions(crm, exts))
347 exts = NULL;
372 sk_X509_EXTENSION_pop_free(exts, X509_EXTENSION_free);