Last active
January 18, 2017 20:28
-
-
Save thikade/d84dcc747dcb8fd0fe0c027427090c26 to your computer and use it in GitHub Desktop.
openssl tips & tricks
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
### 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