Reference guide · dns-ssl · Published 2026-08-16 · 3 min read

Certificate revocation CRL vs OCSP vs CRLSets

Compare CRLs, OCSP and OCSP stapling, and CRLSets/CRLite for TLS certificate revocation, and learn what Chrome, Firefox and Safari now do in practice.

How revocation works

A TLS certificate is revoked when it should stop being trusted before its expiry date, for example because the private key leaked or the certificate was issued by mistake. Without a fresh way to say "this certificate is no longer valid", a leaked key stays trustworthy until expiry, which is dangerous.

Revocation is separate from expiry. An expired certificate is rejected by the browser's clock check. A revoked certificate must be checked against a revocation source, and how reliably that check happens differs sharply between the mechanisms.

CRL vs OCSP

The trade-off in the list-vs-live pair is cost and freshness. CRLs are cheap to serve but frequently out of date and heavy. OCSP is fresh but adds a network round trip per connection unless it is stapled, and an unreachable responder creates a choice between failing closed or silent pass.

Modern browser practice

The practical reality is that browsers no longer treat OCSP as a hard revocation check on every connection:

The shared theme is that per-connection OCSP lookups proved too slow, unreliable, and privacy-sensitive to sustain, so the engines that can cache locally moved toward pre-bundled revocation data (CRLSets and CRLite) while Safari kept live OCSP.

As a site operator you cannot control which mechanism a visitor's browser uses. What you can do is keep the certificate valid, publish an accurate CRL if your CA provides one, and serve OCSP stapling from the origin so the small step that does still run is cheap. Set up the headers and stapling described in OCSP stapling, review certificate hierarchy so the chain is correct, and treat certificate errors reports as the signal that a chain or revocation link is broken.

Need a website built, fixed, optimised, migrated or replaced?

This technical resource is written by CSMBAC, a small design and development studio. If you would rather hand the problem to a professional, the website service page explains how we build enquiry-ready websites.

Explore website services