Discuss this help topic in SecureBlackbox Forum

Check if certificate is included in CRL

Checking if a particular certificate is contained in a CRL (and, this way, revoked) is easy:

  1. Load your CRL into a TElCertificateRevocationList object.
  2. Load the certificate in question into a TElX509Certificate object as explained here.
  3. Finally, pass the certificate to the CRL's IsPresent() method: bool certRevoked = crl.IsPresent(cert);

How To articles about certificate revocation lists (CRLs)

Discuss this help topic in SecureBlackbox Forum