Signing Code and Granting It Permissions [Tools] |
Now you are ready to sign the JAR file.In your command window, type the following to sign the JAR file
Count.jar
using the private key in the keystore entry aliased by "signFiles", and to name the resulting signed JAR filesCount.jar
:jarsigner -keystore susanstore -signedjar sCount.jar Count.jar signFilesYou will be prompted for the store password ("ab987c", without the quotes) and the private key password ("kpi135").Note: jarsigner extracts the certificate (or certificate chain) from the keystore entry whose alias is "signFiles" and attaches it to the generated signature of the signed JAR file.
Signing Code and Granting It Permissions [Tools] |