OpenSSL Verifying Certificate Keys
Jump to navigation
Jump to search
Verify Private Key File
- To verify the md5 checksum of the private key.
- # openssl rsa -noout -modulus -in <key_name>.key | openssl md5
Verify certificate signing request file
- To verify the md5 checksum of the CSR.
- # openssl req -noout -modulus -in <csr_name>.csr | openssl md5
Verify the generated signed certificate file
- To verify the md5 checksum of the certificate file.
- # openssl x509 -noout -modulus -in <crt_name>.crt | openssl md5