Created
March 26, 2012 19:30
-
-
Save greenantdotcom/2208971 to your computer and use it in GitHub Desktop.
How to inspect SSL certificate related info
This file contains 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
### View a key's information | |
openssl rsa -in key -noout -text | |
### View a CSR's information | |
openssl req -in csr -noout -text | |
### View a certificate's information | |
openssl x509 -in certificate -noout -text |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment