我已将证书导入到私有(private)~/.keystore
文件中:
keytool -list
Enter keystore password:
Keystore type: JKS
Keystore provider: SUN
Your keystore contains 1 entry
mylyn-mantis, Jul 15, 2010, trustedCertEntry
并试图用它签名 jar ,但是出现“找不到证书链”错误。
jarsigner -verbose /home/robert/file.jar mylyn-mantis
jarsigner: Certificate chain not found for: mylyn-mantis. mylyn-mantis must reference a valid KeyStore key entry containing a private key and corresponding public key certificate chain.
我怎么解决这个问题?
最佳答案
看来您的 keystore 仅包含一个证书(公共(public) key ),您需要一个完整的 key 条目,一个私钥和整个证书链才能进行任何签名
关于java - Jarsigner:找不到以下证书链,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3255836/