How can I verifiy signed JARs with pure Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T14:43:40Z http://stackoverflow.com/feeds/question/848205 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/848205/how-can-i-verifiy-signed-jars-with-pure-java 1 How can I verifiy signed JARs with pure Java? polyurethan 2009-05-11T13:51:40Z 2009-11-20T09:00:39Z <p>I don't want to use the <code>jarsigner -verify</code>. Is there no JAR util package for my problem? I just want to verfiy a JAR in pure Java.</p> http://stackoverflow.com/questions/848205/how-can-i-verifiy-signed-jars-with-pure-java/868392#868392 0 Answer by polyurethan for How can I verifiy signed JARs with pure Java? polyurethan 2009-05-15T12:25:21Z 2009-11-20T08:11:23Z <p><a href="http://pastie.org/private/qyprjnnh77lqyhlj3v9pw" rel="nofollow">I think I have the right solution now.</a></p> <p>greetz Alexander</p> <p>Edit: Sorry, but the link is a dead link and I can't find the source.</p> http://stackoverflow.com/questions/848205/how-can-i-verifiy-signed-jars-with-pure-java/1769193#1769193 1 Answer by Arne for How can I verifiy signed JARs with pure Java? Arne 2009-11-20T09:00:39Z 2009-11-20T09:00:39Z <p>The "jarsigner" is just a small wrapper for a java program that verifies the jar. Inside your JDK there is a "tools.jar" (usally "C:\programs\Java\jdk1.6.0_13\lib\tools.jar" or something like this). Inside this library there is a class "JarSigner" that provides the desired ability. Just put the "tools.jar" on your classpath!</p> <p>Heres an example program to demonstrate the behaviour</p> <p>import sun.security.tools.JarSigner;</p> <pre><code>public class TestJarSigner { public static void main(String[] args) { JarSigner signer = new JarSigner(); signer.run(new String[] { "-verify", "tools.jar" }); } } </code></pre> <p>Output is:</p> <pre><code>jar is unsigned. (signatures missing or not parsable) </code></pre> <p>The <a href="http://download.java.net/openjdk/jdk6/" rel="nofollow">sources are availible</a> if you need a deeper understanding of the signing process.</p>