Signing jar in Java, I have followed these three step to sign
keytool -genkey -keystore myKeyStore -alias me
keytool -selfcert -keystore myKeyStore -alias me
jarsigner -keystore myKeyStore jarfile.jar me
My questions are as follows :
- After that I have run my applet, why it shows author is unknown?
- I can able to give
-validity
no of days for my jar, what is the maximum days I can give?