简体   繁体   中英

I received .crt .pem and .p7b file from GoDaddy to setup SSL. How can I generate a .pfx file from them using openssl

在此处输入图片说明

I received .crt .pem and .p7b file from GoDaddy to setup SSL. How can I generate a .pfx file from them using openssl

It appears you are after a PKCS#12 file. In this case you should be able to do something like so:

openssl pkcs12 -export -in your.crt -inkey your.pem -out resulting.pfx

options are pretty self-explanatory. Depending on whether your source key is password-protected you might also need to supply that via -passin/-passout values

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM