Lines Matching refs:issuer
177 OSSL_CRMF_CERTID *OSSL_CRMF_CERTID_gen(const X509_NAME *issuer,
182 if (issuer == NULL || serial == NULL) {
190 if (!X509_NAME_set(&cid->issuer->d.directoryName, issuer))
192 cid->issuer->type = GEN_DIRNAME;
546 /* retrieves the issuer name of the given cert template or NULL on error */
550 return tmpl != NULL ? tmpl->issuer : NULL;
559 /* retrieves the issuer name of the given CertId or NULL on error */
562 return cid != NULL && cid->issuer->type == GEN_DIRNAME ?
563 cid->issuer->d.directoryName : NULL;
579 const X509_NAME *issuer,
588 if (issuer != NULL && !X509_NAME_set((X509_NAME **)&tmpl->issuer, issuer))