- Warning message appears while running below command to import SSL Certificate into a keystore file
keytool -importkeystore -srckeystore XXX.p12 -srcstoretype pkcs12 -destkeystore XXX.jks -alias XXX
- Warning message appears while running below command to generate keypair
keytool -genkey -alias xxxx -keyalg rsa -dname "CN=yyyy" -keystore KeyStore.jks -storetype JKS
The JKS keystore uses a proprietary format.
It is recommended to migrate to PKCS12 which is an industry standard format using "keytool -importkeystore -srckeystore XXX.jks -destkeystore XXX.jks -deststoretype pkcs12".