X509_STORE_CTX_get_crl_fn

Callback type that locates a CRL for certificate x.

Synopsis

Declared in <openssl/x509_vfy.h>

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

Return Value

1 on success, or 0 on failure.

Parameters

NameDescription
ctxVerification context performing the lookup.
crlOn success, set to the found CRL (caller/context manages lifetime per OpenSSL rules).
xCertificate for which a CRL is needed.