Last active
August 29, 2015 13:56
-
-
Save aschroder/9060312 to your computer and use it in GitHub Desktop.
OpenSSL command to split the private key out of the Xero .p12 partner certificate on OSX
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
openssl pkcs12 -in entrust-client.p12 -nocerts -nodes -out entrust-private.pem | |
# this command from here: http://developer.xero.com/documentation/getting-started/partner-applications/ | |
# openssl pkcs12 -in entrust-client.p12 -nocerts -out entrust-private.pem | |
# did not work |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment