Created
April 23, 2018 11:06
-
-
Save nburkley/18881a703bf76b9453105e349792d398 to your computer and use it in GitHub Desktop.
Verifying SSL Cert, Key and CSR match
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
# Get CSR MD5 | |
openssl req -noout -modulus -in my_csr.csr | openssl md5 | |
# Get cert MD5 | |
openssl x509 -noout -modulus -in my_cert.crt | openssl md5 | |
# Get Key MD5 | |
openssl rsa -noout -modulus -in my_key.key | openssl md5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment