Hi All,
How to configure .jks file to p12. jks is java key store file so how can i convert to p12 format.
Hi All,
How to configure .jks file to p12. jks is java key store file so how can i convert to p12 format.
The following page gives you a set of useful SSL commands, and you will find your answer.
Convert a JKS file to PKCS12 format (Java 1.6.x and above)
keytool -importkeystore -srckeystore KEYSTORE.jks -destkeystore KEYSTORE.p12 -srcstoretype JKS -deststoretype PKCS12 -srcstorepass mysecret -deststorepass mysecret -srcalias myalias -destalias myalias -srckeypass mykeypass -destkeypass mykeypass -noprompt