Created
October 23, 2014 23:24
-
-
Save skunkworker/93335dbd83d6d22f438e to your computer and use it in GitHub Desktop.
bundle crt with private key to make a pkcs12 bundle
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
Make sure that you use the crt file given by your SSL provider. As exporting the certs through openssl can change the type from sha256 to the less secure sha1 and this should be avoided. | |
$ openssl pkcs12 -export -in NEW_CERT.crt -inkey PRIVATE.key -out NEW_KEYSTORE.p12 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment