Apache-2.2
從 PKCS12 文件生成 .key 和 .crt?
我將如何從 .p12 文件生成 .key 文件和 .crt 文件?
一點Google搜尋發現這個
希望能幫助到你
編輯:添加了固定命令:
openssl pkcs12 -in filename.pfx -nocerts -out filename.key openssl pkcs12 -in filename.pfx -clcerts -nokeys -out filename.crt
OpenSSL 可以在這裡下載: