ssl - How to change a .p12 file to .key file -
i have .p12
file, can transfer .pem
file, how transfer .key
file?
openssl pkcs12 -in out.p12 -nodes -out private.key -nocerts
openssl ask password, store unencrypted private key file private.key
documentation: https://www.openssl.org/docs/man1.1.0/apps/pkcs12.html
Comments
Post a Comment