How to check expiration date of crl file

bastiat picture bastiat · Jan 4, 2014 · Viewed 17.7k times · Source

I have a problem with certificate revocation list for ssl certificates.

How can I check expiration date of a crl file ? How can I validate a crl file ?

Answer

Steffen Ullrich picture Steffen Ullrich · Jan 4, 2014

Use the crl command from OpenSSL:

openssl crl -in file.crl -text

For more information see the documentation.