X509_STORE_CTX_cert_crl_fn

Callback type that checks the revocation status of a certificate against a CRL.

Synopsis

Declared in <openssl/x509_vfy.h>

typedef int(* X509_STORE_CTX_cert_crl_fn)(X509_STORE_CTX*, X509_CRL*, X509*);

Return Value

1 on success, or 0 on failure.

Parameters

NameDescription
ctxVerification context performing the check.
crlCRL to consult.
xCertificate whose revocation status is checked.