Lines Matching refs:issuer
118 static int get_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x);
842 X509 *signer_cert = NULL, *issuer = NULL;
891 /* find the issuer of the current cert */
894 issuer = X509_find_by_issuer_and_serial(chaincerts,
895 ias->issuer, ias->serial);
897 /* were we not able to find the issuer cert */
898 if (issuer == NULL) {
913 issuer, chaincerts);
971 i = PKCS7_signatureVerify(indata, p7, signer, issuer);
1061 /* no issuer! */
1070 * and its issuer. Do the OCSP check
1190 * issuer - The certificate of the issuer of 'cert'
1199 ocsp_verify(PKG_ERR *err, X509 *cert, X509 *issuer,
1250 /* convert cert and issuer fields into OCSP request data */
1251 if ((id = OCSP_cert_to_id(NULL, cert, issuer)) == NULL) {
1565 * issuer - The resulting issuer cert is placed here, if found
1567 * x - The certificate whose issuer we are looking for
1568 * Returns : Success - The issuer cert was found and placed in *issuer.
1572 get_issuer(X509 **issuer, X509_STORE_CTX *ctx, X509 *x)
1580 if ((ok = ctx->get_issuer(issuer, ctx, x)) > 0) {
1589 *issuer = sk_X509_value(ctx->untrusted, i);
1594 *issuer = NULL;