Sign an applet from Windows?
in
Integration and Hardware
•
3 years ago
Hi,
I found a lot of docs saying "type keytool xxxxxxxxx and
jarsigner ..."
(for example,
http://wiki.processing.org/w/Sign_an_Applet : thanxs to forget that Windows exists too!)
Nowhere I can found a link to download "jarsigner".
SO, please help windows users :
could someone explain the steps to sign a jar file under Windows?
thx
edit: I fond that jarsigner & keytool are (for me) inside C:\Program Files\Java\jdk1.6.0_21\bin
I had to add this path to the path env variable to be able to use it with cmd.
So, the first steps are:
1) find the JDK folder (install it if you don't have)
2) change the windows environnement variable named "path" to ad the "bin" folder of jdk :
- Right click on "computer"
- System > Advanced (Advanced system parameters in Seven)
- Environnement variables
- Select "Path" in the second list and click on "Modify"
- add a semicolon (;) at the end and paste the url (for me: C:\Program Files\Java\jdk1.6.0_21\bin\)
3) The next time you'll use "cmd", you'll able to use "keytool" and "jarsigner"
Then, you can use them (I don't know how) or use this software:
http://www.javafr.com/codes/JARSIGNER-SIGNEZ-VOS-ARCHIVES-RIEN-TEMPS_41972.aspx
2