Skip to content

Instantly share code, notes, and snippets.

@greenantdotcom
Created March 26, 2012 19:30
Show Gist options
  • Save greenantdotcom/2208971 to your computer and use it in GitHub Desktop.
Save greenantdotcom/2208971 to your computer and use it in GitHub Desktop.
How to inspect SSL certificate related info
### 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