如何将 .crt 转换为 .pem?
How can I convert .crt to .pem?
您可以使用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 答案 对我不起作用,但以下方法对我有用,使用来自 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.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
您可以使用OpenSSL 库来完成此转换。 Windows 二进制文件可以在此处找到。
安装库后,您需要发出的命令是:
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 答案 对我不起作用,但以下方法对我有用,使用来自 Windows 的 CRT 文件。
I found the other OpenSSL answer didn't work for me, but the following did, working with a CRT file sourced from windows.