java keytool可以导出CSR但不能导入

发布于 2024-10-21 22:51:51 字数 585 浏览 0 评论 0原文

我读了

http://download.oracle.com/javase/6/docs/ technotes/tools/solaris/keytool.html

它说我们可以导出 CSR 文件,但没有导入功能。

据我所知,当我们创建 CSR 文件时,我们会将其传递给 CA, CA 生成与我们的 CSR 相匹配的证书,然后我们再次将其导入回来。

由于 CSR 来自密钥库,因此证书将与密钥库匹配。 进口没有问题。

不过,这又如何呢。

  1. 创建密钥库
  2. 基于密钥库创建 CSR
  3. 将 CSR 发送到 CA
  4. 从 CA 获取证书
  5. 不知何故丢失了密钥库
  6. 生成新的密钥库
  7. 导入 证书
  8. 无法导入,因为此密钥库具有不同的 CSR
  9. 尝试弄清楚如何创建密钥库 匹配的旧 CSR 文件
  10. 基于与来自 CA 的证书相

I read

http://download.oracle.com/javase/6/docs/technotes/tools/solaris/keytool.html

It says that we can export a CSR file, but no import feature.

I understand that when we create a CSR file, we pass it to the CA,
the CA generates the certs to match our CSR and then we import it back again.

Because the CSR is from the keystore, the certs will match the keystore.
No problems with imports.

However, what about this.

  1. create a keystore
  2. create a CSR based on the keystore
  3. send CSR to CA
  4. got certs from CA
  5. somehow lost the key store
  6. generate a new key store
  7. import the certs
  8. fail to import because this keystore has a different CSR
  9. try to figure out how to create a keystore based on the old CSR file that matches the certs from the CA
  10. stumped

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

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

发布评论

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

评论(1

等待我真够勒 2024-10-28 22:51:51

我也遇到过同样的情况。

如果您丢失了密钥存储,这意味着您也丢失了私钥。当然,这个私钥并不是以明文形式存在于 CSR 中(毕竟它是发送给 CA 的!)。当您唯一拥有的就是 CSR 时,就无法恢复它。

CSR 是为一个特定的私钥生成的。如果发生丢失,您唯一能做的就是创建一个新的 CSR(使用新的密钥存储和新的私钥 - 这次不要丢失......)并再支付 200 美元左右让 CA 签名它。 :/

是的,我的老板对我不满意。 :)
您确实应该在某个安全的地方备份密钥存储。

I have been in the same situation.

If you have lost your key store, this means you have also lost the private key. Of course this private key is not in the CSR in plain text (It is sent to the CA after all!). There is no way of restoring it when the only thing you have is the CSR.

The CSR is generated for one specific private key. In case of a loss the only thing you can do is create a new CSR (with the new key store and new private key - don't lose it this time...) and pay another 200 or so bucks for a CA to sign it. :/

Yeah, my boss was not happy with me. :)
You should really make a backup of the key store in some safe place.

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