Parsing A CRL With OpenSSL
Posted by Paul Kehrer on January 10, 2010
0 comments
Short and sweet. This command will give you a list of revoked serial numbers: openssl crl -inform DER -text -noout -in mycrl.crl Most CRLs are DER encoded, but you can use -inform PEM if your CRL is not binary. If you’re unsure if it is DER or PEM open it with a text editor. If [...]