How exactly would I generate a .key file and a .crt file from a .p12 file?
Asked
Active
Viewed 1.1e+01k times
1 Answers
77
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:

JohnLBevan
- 1,214
- 7
- 22
- 46

mulaz
- 10,682
- 1
- 31
- 37
-
Hmm, that wasn't the exact answer but I think I've worked it out anyway. – Fela Maslen Aug 02 '12 at 23:38
-
3Perfect answer with the commands added :) – Fela Maslen Aug 03 '12 at 00:37
-
10And if you want to save the key without a passphrase, add `-nodes` (no DES) before the `-out`. – jcaron Oct 23 '18 at 10:45
-
openssl binary: https://slproweb.com/products/Win32OpenSSL.html – Joel Wiklund Feb 17 '20 at 08:30