Lines Matching refs:issuer
119 static int get_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x);
844 X509 *signer_cert = NULL, *issuer = NULL;
893 /* find the issuer of the current cert */
896 issuer = X509_find_by_issuer_and_serial(chaincerts,
897 ias->issuer, ias->serial);
899 /* were we not able to find the issuer cert */
900 if (issuer == NULL) {
915 issuer, chaincerts);
974 i = PKCS7_signatureVerify(indata, p7, signer, issuer);
1064 /* no issuer! */
1073 * and its issuer. Do the OCSP check
1193 * issuer - The certificate of the issuer of 'cert'
1202 ocsp_verify(PKG_ERR *err, X509 *cert, X509 *issuer,
1253 /* convert cert and issuer fields into OCSP request data */
1254 if ((id = OCSP_cert_to_id(NULL, cert, issuer)) == NULL) {
1568 * issuer - The resulting issuer cert is placed here, if found
1570 * x - The certificate whose issuer we are looking for
1571 * Returns : Success - The issuer cert was found and placed in *issuer.
1575 get_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
1583 if ((ok = ctx->get_issuer(issuer, ctx, x)) > 0) {
1592 *issuer = sk_X509_value(ctx->untrusted, i);
1597 *issuer = NULL;