converting .pfk certificates to .pem

Some applications require that the certificate you are using is in the .pem (Privacy Enhanced Mail) Base64 encoded DER certificate format. If you have the certifiacte as a .pfx you can convert it using openssl like this…

openssl pkcs12 -in yourcert.pfx -out yourcert.pem -nodes

Leave a Reply