Versions Compared

Key

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

...

Info
You may need to download OpenSSL for Windows to follow these steps.
  1. Extract pem key

    Code Block
    languagetext
    themeRDark
    openssl pkcs12 -nocerts -in <PFX Path> -out <PEM Path>
  2. Convert extracted pem key to der format

    Code Block
    languagetext
    themeRDark
    openssl pkcs8 -topk8 -inform PEM -outform DER -in <PEM Path> -out <DER Path> -nocrypt

...