- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好的,首先我会说一下我对 SSL 工作原理的了解。
最重要的是,我需要了解客户端证书的工作原理,因为我正在设置 mTls istio 网关并且遇到了麻烦。
所以,首先我需要 key 对,私有(private)的和公共(public)的。如果我理解正确,我接下来使用以下命令创建它们:
keytool -genkey -alias myKeyPair -keyalg RSA -keysize 2048 store.jks
如果我查看 keystore ,就会有一个 PrivateKeyEntry。接下来我创建证书请求:
keytool -certreq -keyalg RSA -alias myKeyPair -file request.csr -keystore store.jks
过了一会儿,我收到了一个签名的客户端证书
client.cer
和证书受信任的 CA
ca.cer
.
istio gateway: peer did not return a certificate
其次,我尝试使用
java.net.http.HttpClient
与
SSLContext
包含我的 jks 的设置。它奏效了。但首先我必须把
ca.cer
和
client.cer
在我的 jks 中。这我无法理解:为什么我需要把
ca.cer
?因为没有
ca.cer
存储在
store.jks
我有错误的证书验证。
Certificate already exists in keystore under alias <myKeyPair>. Do you still want to add it?
为什么它认为 privateKeyEntry 和trustedCertEntry 是一样的?
最佳答案
Meta:由于问题的模糊性,答案很差,但评论太长了。
First, i tried to send request from curl. But curl needs private key which stored in jks. I dont have openssl and cant get it, so i extract private key using java code. But the result was always the same: istio gateway: peer did not return a certificate
curl -V
(大写)查看它是如何构建的,然后查看手册页的部分,在您的系统上或
on the web ,适用于该实现。
Second, I tried using java.net.http.HttpClient with SSLContext setting containing my jks. And it worked. But firstly I had to put ca.cer and client.cer in my jks. And this I cannot understand: why do I need to put ca.cer? Because without ca.cer stored in store.jks i have error certificate validation.
keytool -printcert -file $file
显示详细信息-- 或者因为你已经导入了它,
keytool -list -v -alias name -keystore $ks [-storepass $pw]
.如果它是 PEM 格式的多个证书,您可以使用编辑器将其拆分并单独显示每个证书。如果是 DER 格式的多个证书,您将无法轻松处理,但幸运的是,这种格式很少使用。
openssl x509 [-inform pem|der] -text -noout
也常用来显示cert文件的详细信息,但是你说不能用。
Also when I put client.cer in jks, keytool displays a warning: Certificate already exists in keystore under alias . Do you still want to add it? Why does it think privateKeyEntry and trustedCertEntry are the same?
keytool -importcert
客户端证书到您创建的私钥条目的别名,用于创建
-certreq
,在您的示例中为
myKeyPair
, 在你之后
keytool -importcert
任何需要的链证书,以及可选的根或 anchor ,(每个)到不同的别名。 (使用
root
、
imed
、
imed2
等简单词作为别名通常很方便,但不是必需的。)或者,如果您将整个链作为单个文件,则可以是 PEM 序列或 DER序列或“p7b”(一个没有数据和签名的虚拟 PKCS7 SignedData,通常用作一个或多个证书的容器,例如链)PEM 或 DER,您应该在单个操作中导入该链。
关于ssl - keytool 是如何工作的 : privateKeyEntry and trustedCertEntry?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63937585/
好的,首先我会说一下我对 SSL 工作原理的了解。 最重要的是,我需要了解客户端证书的工作原理,因为我正在设置 mTls istio 网关并且遇到了麻烦。 所以,首先我需要 key 对,私有(priv
这个问题在这里已经有了答案: Import certificate as PrivateKeyEntry (3 个答案) 关闭 5 年前。
我正在更新我的 Hadoop 集群使用的证书。当前的 JKS 有一个条目: Your keystore contains 1 entry Alias name: myalias Creation da
使用 keytool,我试图延长我拥有的 keystore 中 trustedCertEntry 的到期日期。 keystore 包含以下内容 $ keytool -list -keystore ce
我在这方面知识不多,但是我仍然尝试通过谷歌搜索来做事情。这是我面临的问题。 案例1(作品): 我有一个CA签名的证书,我想在我的Web应用程序中使用它。我首先创建了一个 keystore 。我看到它在
我最近加入了一个项目,该项目有一个在 Tomcat 中运行的应用程序,该应用程序使用单个文件作为 KeyStore 和 TrustStore。换句话说,它包括类型为 trustedCertEntry
我正在尝试使用 Java API 创建 PKCS12 keystore 文件。但是,一旦我尝试导入证书,就会出现异常 java.security.KeyStoreException: TrustedC
我是一名优秀的程序员,十分优秀!