cert_crl
int (*cert_crl)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x);
X509_STORE_CTX_cert_crl_fn cert_crl)
xs->cert_crl = cert_crl;
return xs->cert_crl;
ok = ctx->cert_crl(ctx, dcrl, x);
ok = ctx->cert_crl(ctx, crl, x);
if (store != NULL && store->cert_crl != NULL)
ctx->cert_crl = store->cert_crl;
ctx->cert_crl = cert_crl;
return ctx->cert_crl;
int (*cert_crl)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x);
X509_STORE_CTX_cert_crl_fn cert_crl);