tldr/pages/common/jarsigner.md

17 lines
408 B
Markdown
Raw Normal View History

2019-11-12 21:20:20 +00:00
# jarsigner
> Sign and verify Java archive (JAR) files.
2019-11-12 21:20:20 +00:00
> More information: <https://docs.oracle.com/javase/9/tools/jarsigner.htm>.
- Sign a JAR file:
`jarsigner {{path/to/file.jar}} {{keystore_alias}}`
- Sign a JAR file with a specific algorithm:
`jarsigner -sigalg {{algorithm}} {{path/to/file.jar}} {{keystore_alias}}`
- Verify the signature of a JAR file:
`jarsigner -verify {{path/to/file.jar}}`