Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to sign a .wgt file(widget which is a jar file) using jarsigner of Java 6. But when I try to sign, it gives me the following error, after asking to enter the passphrase for keystore.

jarsigner error: java.lang.RuntimeException: keystore load: Keystore was tampered with, or password was incorrect

I even tried with a newly created key store, So that I am sure I am entering the correct password. Is there anything else which could have been gone wrong? Thanks in advance!

share|improve this question

2 Answers

The error message you are getting describes the problem. Either you've typed your password incorrectly or the keystore has become corrupted.

The most likely answer is that you've confused the keystore password with the password for the alias/keypass.

share|improve this answer
1  
I think you haven't exhausted all possible causes. I get the same, and I have doublechecked everything. – rwst Oct 2 '12 at 8:13

Check your keystore alias name once. Some times keystore alias name is different from keytool alias name then it gives the same error...So check it alias names once

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.