Enter PEM pass phrase when converting PKCS#12 certificate into PEM

“Enter PEM pass phrase” because openssl doesn’t want to output private key in clear text. The password is used to output encrypted private key

Below command can be used to output private key in clear text. No password is then asked.

openssl pkcs12 -nodes -in me.p12 -out me.pem

Leave a Comment