Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 288 Bytes

cert-fingerprint.md

File metadata and controls

15 lines (10 loc) · 288 Bytes

cert fingerprint

  • retrieve certificate from site
openssl s_client -connect website.com:443
  • then copy cert from begin to end of certificate part and save into a file cert.pem

  • generate SHA1 fingerprint

openssl x509 -noout -in ./cert.pem -fingerprint -sha1