Currently we use jarsigner to sign our jar. We then display some SHA1-Digest values for some specific classes to prove to an external auditor that the code has not changed between releases.
We only rely on the META-INF/xxx.SF
file to get the digest information and we never use the META-INF/xxx.DSA
signature block file.
As we only need the digest calculation in our code, I was wondering if this is possible to have the .SF
file generated with some java tool without actually using a key.
I read http://docs.oracle.com/javase/6/docs/technotes/tools/windows/jarsigner.html but it looks like the key is mandatory.