Skip to content

Instantly share code, notes, and snippets.

@olivierlemoal
Last active August 29, 2015 14:21
Show Gist options
  • Save olivierlemoal/912bf46db5c956230b8f to your computer and use it in GitHub Desktop.
Save olivierlemoal/912bf46db5c956230b8f to your computer and use it in GitHub Desktop.
OpenSSL check
# Check certificate
openssl x509 -in certif.pem -text -noout
# Check CSR
openssl req -text -noout -verify -in CSR.csr
# Check private key
openssl rsa -in privateKey.key -check -noout
# Check CRL (often in DER format)
openssl crl -inform DER -text -noout -in mycrl.crl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment