信任库中哪些证书受信任?

发布于 2025-01-04 07:55:44 字数 221 浏览 1 评论 0原文

我不太了解密钥库/信任库术语,但就我而言,信任库保存对等服务器信任的证书。

来查看密钥库的内容

keytool -list -keystore refArchive/testkeystore
Enter keystore password: password 

我可以使用信任库是否有任何等效项 ?如何查看受信任的证书?

谢谢!

I do not know very well keystore / truststore lingo but as far as I'm concerned, a truststore keeps the certificates trusted by a peer server.

I can view the content of a keystore using

keytool -list -keystore refArchive/testkeystore
Enter keystore password: password 

Is there any equivalent for the truststore? How can I view the trusted certificates?

thx!

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

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

发布评论

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

评论(2

夢归不見 2025-01-11 07:55:44

信任存储通常(实际上应该只包含 CA,但通常违反此规则)包含根 CA(公共 CA 或私有 CA)。您可以使用以下命令验证信任存储中的证书列表

keytool -list -v -keystore truststore.jks

Trust store generally (actually should only contain root CAs but this rule is violated in general) contains the certificates that of the root CAs (public CAs or private CAs). You can verify the list of certs in trust store using

keytool -list -v -keystore truststore.jks
可爱暴击 2025-01-11 07:55:44

信任库有等效的吗?如何查看可信的
证书?

是的,有。完全相同的命令,因为密钥库和信任库的不同在于它们存储的内容,即私钥或签名的公钥(证书)

没有其他区别

Is there any equivalent for the truststore? How can I view the trusted
certificates?

Yes there is.The exact same command since keystore and truststore differ only in what they store i.e. private key or signed public key (certificate)

No other difference

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