keystore - Keytool command to generate a .P12 from a .JKS file -


i trying generate .p12 k .jks file using keytool utility provided jdk.

keytool -importkeystore -srckeystore mykeystore.jks -destkeystore mykeystore.p12 -srcstoretype jks -deststoretype pkcs12

however, command works java 1.6 , above. need execute command machine not have jdk 1.6 or higher one. have there jdk 1.5.

what equivalent of command if have run jdk 1.5 installation.

please provide here.

thanks, maneesh sharma

you cannot importkeystore on java 5, feature introduced java 6.

you can refer documentation of java 5 , java 6.

if looking @ importing, can refer -import command (pre java 6).


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -