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
Post a Comment