cacerts 和 keystore 有什么区别?

2022-01-25 00:00:00 certificate keystore java

cacerts和keystore这两者有什么区别?

What's the difference between the two, cacerts and keystore?

如果我使用这些链接中的定义,cacerts 和 keystore,好像是证书的集合,但在(Java)分布式系统的上下文中.哪一个用于在 SSL 连接期间进行身份验证?两者都或只是其中之一或替代?

If I use the definition found in these links, cacerts and keystore, it seems that they're a collection of certificates, but in context of a (Java) distributed system. Which one is used to authenticate during an SSL connection? Both or just one of them or alternate?

推荐答案

'cacerts' 是一个信任库.信任库用于对对等方进行身份验证.密钥库用于验证您自己.

'cacerts' is a truststore. A trust store is used to authenticate peers. A keystore is used to authenticate yourself.

相关文章