To use a PFX certificate in Kaspersky Security Center 13 Web Console, you must first convert it to the PEM format by using any convenient OpenSSL-based cross-platform utility (for more information, refer to the OpenSSL website).
To convert a PFX certificate to the PEM format in Windows operating system:
openssl pkcs12 -in <filename.pfx> -clcerts -nokeys -out certificate.crt
openssl pkcs12 -in <filename.pfx> -nocerts -nodes -out private.key
The certificate file in PEM format and the private key file are ready to use, so you can specify them in the Kaspersky Security Center 13 Web Console installer.
To convert a PFX certificate to the PEM format in Linux operating system:
openssl pkcs12 -in <filename.pfx> -nocerts -nodes | sed -ne '/-BEGIN PRIVATE KEY-/,/-END PRIVATE KEY-/p' > private.key
openssl pkcs12 -in <filename.pfx> -clcerts -nokeys | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > certificate.crt
The certificate file in PEM format and the private key file are ready to use, so you can specify them in the Kaspersky Security Center 13 Web Console installer.
Page top