如何将 .crt 转换为 .pem

发布于 2024-10-11 17:27:55 字数 25 浏览 3 评论 0原文

如何将 .crt 转换为 .pem?

How can I convert .crt to .pem?

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

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

发布评论

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

评论(2

余厌 2024-10-18 17:27:55

您可以使用OpenSSL 库来完成此转换。 Windows 二进制文件可以在此处找到。

安装库后,您需要发出的命令是:

openssl x509 -in mycert.crt -out mycert.pem -outform PEM

You can do this conversion with the OpenSSL library. Windows binaries can be found here.

Once you have the library installed, the command you need to issue is:

openssl x509 -in mycert.crt -out mycert.pem -outform PEM
牵你手 2024-10-18 17:27:55

我发现 其他 OpenSSL 答案 对我不起作用,但以下方法对我有用,使用来自 Windows 的 CRT 文件。

openssl x509 -inform DER -in yourdownloaded.crt -out outcert.pem -text

I found the other OpenSSL answer didn't work for me, but the following did, working with a CRT file sourced from windows.

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