How to create .pfx file or PKCS12 or .pfx file for my SSL Cert from certificate and private key?
How to create .pfx file or PKCS12 or .pfx file for my SSL Cert from certificate and private key? You need to use openssl and command: (from Godaddy example) for P12 openssl pkcs12 -export -in mydomain.crt -inkey mydomain.com.key -certfile gd_bundle-g2-g1.crt -out mydomain.p12 For PFX openssl pkcs12 -export -out domain.name.pfx -inkey domain.name.key -in domain.name.crt Using Windows there is tool for that The Microsoft Pvk2Pfx command line utility Pvk2Pfx (Pvk2Pfx.exe) is a command-line tool copies public key and private key information contained in .spc, .cer, and .pvk files to a Personal Information Exchange (.pfx) file. http://msdn.microsoft.com/en-us/library/windows/hardware/ff550672(v=vs.85).aspx Solution for Windows that doesn't require OpenSSL installed I recently was trying to solve the same issue - and I only had a windows laptop with no openssl installed (and no enough admin rights to install it). Turns out windows has built-in utility call...