Created
May 6, 2020 16:58
-
-
Save Xunnamius/2595f4a45709f7294a64ba1a2a5b37d6 to your computer and use it in GitHub Desktop.
How to get fingerprints of public keys in pem files
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
sudo openssl x509 -noout -fingerprint -md5 -inform pem -in /some/path/fullchain.pem | |
sudo openssl x509 -noout -fingerprint -sha1 -inform pem -in /some/path/fullchain.pem | |
sudo openssl x509 -noout -fingerprint -sha256 -inform pem -in /some/path/fullchain.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment