| |||
Converting to PKCS#12 formatThese are instructions for converting private key and certificate information to PKCS#12 format, using OpenSSL (not a part of this software). Certificates (.cer) can be in binary DER format or in base64 encoded PEM format. A certificate can be converted from DER to PEM format as follows: openssl x509 -inform DER -in cert1.cer -out cert2.cer where:
The following command can be used to create a PKCS#12 file based on a private key file and a signed certificate file. openssl pkcs12 -export -in cert2.cer -inkey privkey.pem -out server.p12 -name "Test" where:
The PKCS#12 file can be used to enable the secure HTTPS web interface (See: Settings). | |||