Created
July 10, 2012 19:45
-
-
Save greenantdotcom/3085766 to your computer and use it in GitHub Desktop.
Confirm key, CSR, and certificates all have the same modulus (which should confirm that they all share the same key)
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
### View a key's information | |
openssl rsa -in key -noout -modulus | |
### View a CSR's information | |
openssl req -in csr -noout -modulus | |
### View a certificate's information | |
openssl x509 -in certificate -noout -modulus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment