如何将证书链及其证书导入 java 密钥库?

发布于 2024-11-03 09:17:00 字数 81 浏览 0 评论 0原文

我有一个通配符证书以及证书链和私钥。 如何将其导入到我的 java 密钥库中?

证书链 *.whatever.com - 证书 私钥

I have a wilcard certificate along with a certificate chain and private key.
How do I import that into my java keystore?

certificate chain
*.whatever.com - certificate
private key

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

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

发布评论

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

评论(1

猛虎独行 2024-11-10 09:17:00

我在此处找到了答案 -

您必须将证书转换为 PKCS12 证书才能导入使用类似于以下的命令。

keytool -importkeystore -deststorepass changeit -destkeypass changeit -destkeystore my-keystore.jks -srckeystore cert-and-key.p12 -srcstoretype PKCS12 -srcstorepass cert-and-key-password -alias 1

要从 PEM 转换为 PKCS12,请使用以下命令。

openssl pkcs12 -export -out certificate.pfx -inkey privateKey.key -in certificate.crt -certfile CACert.crt

I found the answer here -

You have to convert your to a PKCS12 certificate to import it with a command similar to the following.

keytool -importkeystore -deststorepass changeit -destkeypass changeit -destkeystore my-keystore.jks -srckeystore cert-and-key.p12 -srcstoretype PKCS12 -srcstorepass cert-and-key-password -alias 1

To convert from PEM to PKCS12 use the following command.

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