Package: openssl Version: 1.0.1g-3 Severity: minor The crl(1ssl) manual page gives the following example:
Output the text form of a DER encoded certificate:openssl crl -in crl.der -text -noout
But the default input format is PEM, not DER, so this doesn't work. The command line should be:
openssl crl -inform DER -in crl.der -text -noout -- Jakub Wilk -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

