Skip to content

Instantly share code, notes, and snippets.

@thikade
Last active January 18, 2017 20:28
Show Gist options
  • Save thikade/d84dcc747dcb8fd0fe0c027427090c26 to your computer and use it in GitHub Desktop.
Save thikade/d84dcc747dcb8fd0fe0c027427090c26 to your computer and use it in GitHub Desktop.
openssl tips & tricks
### Extract Private Key from PKCS12 file into PEM format
openssl pkcs12 -in key.p12 -passin pass:XXX -passout pass: -nocerts -out key.pem -nodes ; cat key.pem
ssldump -k ./key.pem port 9043
openssl ciphers -V | grep -i 0x9c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment