Cert Manager - P12 Export
-
Hi All,
Is there a way to either set a password on .p12 certificate exports or determine what the default password IS? I have created a user cert and would like to import it into my macbook via keychain access. I have tried using no password, using a " " space as a password, and nothing works. Any help would be appreciated.Best,
Michael -
By default there is no password.
We have added a means to export with a password in 2.5.0
-
@jimp Thanks for the info. I tried with empty password and also with a space charachter. Is OSX just picky about this stuff?
-
you can set a password on it with openssl... let me dig up the thread where went over it.
Here
https://forum.netgate.com/post/670290Which points to the docs, where I had put it in back when it was wiki
https://docs.netgate.com/pfsense/en/latest/packages/using-eap-and-peap-with-freeradius.html#eap-tls
If your client will not load the .p12 without a password on it, and space does not work you can add a password with openssl Just download user cert and key vs the p12 and with the ca cert use the following command openssl pkcs12 -export -certfile ca.crt -in user.crt -inkey user.key -out user.p12
-
@johnpoz Thanks for the input. This worked just fine.