The ePO - On-prem software supports PEM-encoded private keys, including both password protected and non-password protected private keys. Using OpenSSL you can convert a PVK-formatted key to a PEM format.
To convert the PVK formatted file, install the OpenSSL for Windows software. This software is available from:
http://www.slproweb.com/products/Win32OpenSSL.html
Using the OpenSSL for Windows software, convert your PVK format certificate to PEM format.
For details about product features, usage, and best practices, click ? or Help.
To convert a previously created PVK file to a PEM file, type the following at the command line:
openssl rsa -inform PVK -outform PEM -in C:\ssl\keys\myPrivateKey.pvk -out C:\ssl\keys\myPrivateKey.pem -passin pass:p@$$w0rd -passout pass:p@$$w0rdNote
In this example,
-passinand-passoutarguments are optional.If prompted, type the password used when you originally created the PVK file.
If the
-passoutargument is not used in the example, the newly created PEM-formatted key is not password protected.