Last active
August 29, 2015 14:21
-
-
Save olivierlemoal/912bf46db5c956230b8f to your computer and use it in GitHub Desktop.
OpenSSL check
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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