Lines Matching defs:issuer
518 crl_s.crl.issuer = (X509_NAME *)name; /* won't modify it */
717 * Try to get issuer cert from |ctx->store| matching the subject name of |x|.
725 int X509_STORE_CTX_get1_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
734 *issuer = NULL;
744 *issuer = obj->data.x509;
745 /* |*issuer| has taken over the cert reference from |obj| */
768 /* Look through all matching certs for suitable issuer */
778 *issuer = pobj->data.x509;
782 * Leave the so far most recently expired match in *issuer
785 if (*issuer == NULL
787 X509_get0_notAfter(*issuer)) > 0)
788 *issuer = pobj->data.x509;
792 if (*issuer != NULL && !X509_up_ref(*issuer)) {
793 *issuer = NULL;