How to sign a jar to never expire?

邮差的信 提交于 2019-12-12 08:38:28

问题


I used jarsigner to sign my jar file. But I got a warning:

Warning:
This jar contains entries whose signer certificate will expire within six months.

How can I make it never expire or expire in a longer time?


回答1:


Specify the required number of days in the -validity parameter to keytool.

Addendum: -validity is an option to keytool.

keytool -genkey -alias sawyer -validity 1234 -dname "…"

After you create the new key, use its unique alias with jarsigner to sign your JAR.



来源:https://stackoverflow.com/questions/6171554/how-to-sign-a-jar-to-never-expire

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!