If you want to create a password protected PFX file from certificate file and a private key you can use OpenSSL. Follow these steps to create a PFX file.
- 1. Download the SSL/TLS tookit from https://www.openssl.org.
- 2. Run this command in a terminal window:
“{PATH}\openssl.exe” pkcs12 -export -out “{PATH}\{filename-of-pfx}.pfx” -inkey “{PATH}{filename-of-key}.key” -in “{PATH}{filename-of-certificate}.crt” -certfile {PATH}{filename-of-ca-bundle}.crt - 3. Choose a password for the pfx file.
- 4. Done, the pfx file is now created at specified path.