It’s possible to check a certificate fingerprint using openssl
:
- SHA-1
openssl x509 -noout -fingerprint -sha1 -inform pem -in [cert-file]
- SHA-256
openssl x509 -noout -fingerprint -sha256 -inform pem -in [cert-file]
- MD5
openssl x509 -noout -fingerprint -md5 -inform pem -in [cert-file]