command line - openSSL - Enter export password to generate a P12 certificate -


i generate p12 certificate .key , .pem. i'm running command , prompted enter export password:

pkcs12 -export -inkey private-key.key -in developer_identity.pem -out iphone_dev.p12 

enter image description here

i can't enter password @ point, seems keyboard input not recognized.

what miss? (i'm new command line tool , openssl)

openssl command line app not display characters when entering password. type press enter , see working.

you can use openssl pkcs12 -export -inkey mykey.key -in developer_identity.pem -out iphone_dev.p12 -password pass:yourpassword pass password yourpassword command line. please take @ section pass phrase options in openssl manual more information.


Comments