Last active
September 14, 2017 10:47
-
-
Save cactaceae21/3532207d9bc271084ea1a534acb4b1b2 to your computer and use it in GitHub Desktop.
SSL Key export from PFX #ssl #openssl #security
This file contains 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
## Uses exported certificates from CertMGR.exe | |
## Export private keys from PFX | |
openssl pkcs12 -in filename.pfx -nocerts -nodes -out filename.key | |
## Export public keys from PFX | |
openssl pkcs12 -in filename.pfx -clcerts -nokeys -out filename.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment