Created
September 22, 2015 20:19
-
-
Save jcefoli/e8a133639e5ff5fa5156 to your computer and use it in GitHub Desktop.
Convert PFX Windows Cert to Linux Public/Private Key and Chain
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
openssl pkcs12 -in ./cert.pfx -clcerts -nokeys -out public.crt | |
openssl pkcs12 -in ./cert.pfx -nocerts -nodes -out private.rsa | |
cat public.crt ca-bundle.crt >> bundle.crt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment