0

I want to sign jad files. I checked the internet for *.jad file signature. I found this site

I used this command for signing the jad file.

 Java -jar JadTool.jar -addcert -keystore <keystorename> -alias <aliasname> 
-storepass <password> -inputjad <input_jadfile> 
-outputjad <output_jadfile>

Under the "Add Signature to JAD" title in this url.

But I encountered this error

  Error parsing input JAD: 

How do I know where the problem is?

dgn
  • 103
  • 5
  • 15

1 Answers1

0

You first need to create a certificate. You can make a self signed certificate using WTK or any other tool. Once you have the certificate, you need to sign you jar using the certificate. Again, you can do this using WTK

sanket
  • 789
  • 4
  • 16