Signing Code and Granting It Permissions |
Now you are ready to sign the JAR file.In your command window, type the following to (1) sign the JAR file
Count.jar
using the private key in the keystore entry aliased by"signFiles"
, and (2) name the resulting signed JAR filesCount.jar
:You will be prompted for the store password ("ab987c", without the quotes) and the private key password ("kpi135").jarsigner -keystore susanstore -signedjar sCount.jar Count.jar signFilesNote:
jarsigner
extracts the certificate 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 |