Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to write my own jar verifier application for BlackBerry. However, as BlackBerry does not have the support of the java.util.jar package, we are left to write the verification logic ourselves.

Can any body let me know the internal structure of the .DSA/.RSA file that can be found within a signed jar file? We are stuck in the verification process as there is no documented method of extracting the public signature that was used to sign the jar from the signature block file.

Any help in this regard will be most helpful and appreciated.

Thanks

Basilio

share|improve this question

1 Answer

When you install JDK there is a file src.zip

This file contains source code of JDK libs.

Unzip it and inspect source code for class JarEntry

Methods: getCertificates() and getCodeSigners()

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.