How exactly would I generate a .key file and a .crt file from a .p12 file?
1 Answer
A little googling finds this
Hope it helps
edit: added fixed commands:
openssl pkcs12 -in filename.pfx -nocerts -out filename.key openssl pkcs12 -in filename.pfx -clcerts -nokeys -out filename.crt OpenSSL can be downloaded here:
- Hmm, that wasn't the exact answer but I think I've worked it out anyway.Fela Maslen– Fela Maslen2012-08-02 23:38:46 +00:00Commented Aug 2, 2012 at 23:38
- 3Perfect answer with the commands added :)Fela Maslen– Fela Maslen2012-08-03 00:37:58 +00:00Commented Aug 3, 2012 at 0:37
- 12And if you want to save the key without a passphrase, add
-nodes(no DES) before the-out.jcaron– jcaron2018-10-23 10:45:45 +00:00Commented Oct 23, 2018 at 10:45 - openssl binary: slproweb.com/products/Win32OpenSSL.htmlJoel Wiklund– Joel Wiklund2020-02-17 08:30:09 +00:00Commented Feb 17, 2020 at 8:30