OpenSSL Verifying Certificate Keys: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Verify Private Key File == # To verify the md5 checksum of the private key. ## <tt>'''# openssl rsa -noout -modulus -in <privatekey.key> | openssl md5'''</tt> == Verify ce...") |
No edit summary |
||
Line 14: | Line 14: | ||
# [https://www.sslshopper.com/certificate-key-matcher.html Certificate Key Matcher] | # [https://www.sslshopper.com/certificate-key-matcher.html Certificate Key Matcher] | ||
[[Category:Software]] | |||
[[Category:SSL]] | [[Category:SSL]] |
Revision as of 17:07, 21 February 2013
Verify Private Key File
- To verify the md5 checksum of the private key.
- # openssl rsa -noout -modulus -in <privatekey.key> | openssl md5
Verify certificate signing request file
- To verify the md5 checksum of the CSR.
- # openssl req -noout -modulus -in <CSR.csr> | openssl md5
Verify the generated signed certificate file
- To verify the md5 checksum of the certificate file.
- # openssl x509 -noout -modulus -in <certificate.crt> | openssl md5