gpt4 book ai didi

ssl - 如何将生成的 SSL 证书转换为 PKCS12

转载 作者:行者123 更新时间:2023-12-04 22:42:07 24 4
gpt4 key购买 nike

我从 https://punchsalad.com/ssl-certificate-generator/ 获得了 crt+ca 包和私钥,我想知道如何将文件转换为可以在 SpringBoot 中使用的 PKCS12?
我发现网上教程只提到了.pem格式,下面的指令需要chain.pem。我想知道如何获得这个文件。

openssl pkcs12 -export -out certificate.pfx -inkey privkey.pem -in cert.pem -certfile chain.pem
相关链接:
https://www.sslshopper.com/ssl-converter.html
谢谢你。

最佳答案

很高兴帮助你,
我刚刚遇到了这个问题。
https://punchsalad.com/ssl-certificate-generator/ 获得的 ssl 文件是包含 ca-bundle.txt 和 private-key.txt 的 txt 文件
要转换为pfx,只需将下载的txt文件ca-bundle.txt更改为certificate.crt,将private-key.txt更改为private.key,然后输入以下命令。

sudo openssl pkcs12 -export -out FILE.pfx -inkey private.key -in certificate.crt
-certfile 命令是选项。
我在 Azure Web App Service 中上传 pfx 时成功。

关于ssl - 如何将生成的 SSL 证书转换为 PKCS12,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68112810/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com