Keytool 和 jarsigner 工具

发布于 2024-10-04 07:35:16 字数 1436 浏览 1 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧伤慢歌 2024-10-11 07:35:16

签署 java 存档(.jar 文件)的步骤。

  1. 首先使用keytool程序创建公钥:
    keytool -genkey -alias <别名>; -keystore <密钥文件>; (http://docs.oracle.com/javase/ 6/docs/technotes/tools/solaris/keytool.html)。

  2. 然后对java归档包进行签名:
    jarsigner -keystore <密钥文件>; -storepass <之前步骤中的密码 1> -keypass <之前步骤中的密码 2> -sigfile <文件名.DSA .SF> -certs; <别名>
    (http://docs.oracle.com/javase/ 6/docs/technotes/tools/solaris/jarsigner.html)。

The steps to sign a java archive (.jar file).

  1. First create the public key with keytool program:
    keytool -genkey -alias <alias name> -keystore <key file> (http://docs.oracle.com/javase/6/docs/technotes/tools/solaris/keytool.html).

  2. Then sign the java archive package:
    jarsigner -keystore <key file> -storepass <password 1 from steps before> -keypass <password 2 from steps before> -sigfile <the name of files .DSA .SF> -certs <java archive file name> <alias name>
    (http://docs.oracle.com/javase/6/docs/technotes/tools/solaris/jarsigner.html).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文