CyberGlossary

Network Security

Certificate Revocation List (CRL)

Also known as: CRL, Revocation list

Definition

A signed, periodically published list of digital certificates that a CA has invalidated before their natural expiry, used by relying parties to detect revoked certs.

A CRL is a CA-signed document containing the serial numbers and revocation dates of certificates that should no longer be trusted, typically because the private key was compromised, the subject changed, or the certificate was misissued. Relying parties such as browsers and TLS clients download the CRL from the location named in the CRLDistributionPoints extension and reject any certificate whose serial appears there. CRLs work offline once cached but can grow large and may be hours or days out of date, which is why OCSP and OCSP stapling, short-lived certificates, and CRLite-style compressed lists are increasingly preferred in modern deployments.

Examples

  • A CA publishing crl.example/ca.crl every 24 hours so clients can refresh the revocation list.
  • A VPN gateway that loads its CA's CRL at startup and refuses revoked client certificates.

Related terms