Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
签署 java 存档(.jar 文件)的步骤。
首先使用keytool程序创建公钥:keytool -genkey -alias <别名>; -keystore <密钥文件>; (http://docs.oracle.com/javase/ 6/docs/technotes/tools/solaris/keytool.html)。
然后对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).
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).
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).
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
签署 java 存档(.jar 文件)的步骤。
首先使用keytool程序创建公钥:
keytool -genkey -alias <别名>; -keystore <密钥文件>; (http://docs.oracle.com/javase/ 6/docs/technotes/tools/solaris/keytool.html)。
然后对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).
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).
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).