How to convert .p12 file to .pem file using Terminal? How to convert .p12 file to .pem file using Terminal? ios ios

How to convert .p12 file to .pem file using Terminal?


Are you in the right directory? Use ls command, does it list Certificates.p12?

EDIT: In the terminal type:

ls

this will list all the files of the current directory that you are in. If Certificates.p12 is not listed, you are not in the correct directory in the terminal.

To get to the correct directory type:

cd *path*

where path is the folder containing Certificates.p12. You can drag and drop that folder into the terminal after typing cd. Hit return. Then run the openssl command.


Open the terminal and click ls to list the items in the current directory,

then if you are not in the folder in which the .p12 is having move to the correct directory by

cd directory path

for example,

cd Downloads

Then list the files using and make sure the .p12 file are existing in the directory.

Then convert the .p12 file to .pem file using the following command.

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

The .pem file which you have created will be saved in the directory which is having the .p12 file.