keytool -importkeystore -srckeystore testkey.p12 -srcstoretype pkcs12 -srcalias 1 -destkeystore testkey.jks -deststoretype jks -destalias testkey
You can add -deststorepass PASSWORD
to set the password on the command line.
If you don't, keytool will ask you for a password.
To convert cert.pem
and key.pem
to key.p12
:
openssl pkcs12 -export -in cert.pem -inkey key.pem -out key.p12
Export the certificate with the complete certificate chain:
openssl pkcs12 -in testkey.p12 -out testkey.pem -nokeys
Export the certificate only:
openssl pkcs12 -in testkey.p12 -out testkey.pem -nokeys -clcerts