Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Download your certificate from ZeroSSL and unzip it to a folder on your harddisk
  2. If you're using Windows, install OpenSSL and add it to your path. This guide might be helpful. MacOS has Openssl pre-installed, most Linux distributions as well.

    Info
    titleOpenSSL Download

    https://slproweb.com/products/Win32OpenSSL.html


  3. On MacOS and Linux, open a terminal (on Windows, open a command prompt) and change to the directory where you extracted the certificates to
  4. Run the following commands to generate the "certificate.p12" PKCS12 file:

...

(input any export password for future import use)

Info
titleConvert to pfx file

openssl pkcs12 -export -out certificate.pfx -inkey privateKey.txt -in full_chain.crt -certfile ca_bundle.crt

...