How to sign a Java Applet
Monday, February 20th, 2006 This is a tutorial on how to sign a Java Applet to allow it to bypass the security of the JVM. Here
Summary:
* To create a certificate:
keytool -genkey -alias myKeyAlias -keypass myKeypassword -keystore mykeystoreFileName.bin -storepass publicKeykeystorePassword
* To sign the applet (it has to be a .jar file):
jarsigner -keystore mykeystoreFileName.bin MyApplet.jar myKeyAlias
* To verify if the applet […]