如何将 .csr 转换为 .cer(或 Windows 上可用的任何文件)

发布于 2024-11-29 18:05:01 字数 125 浏览 2 评论 0原文

我正在尝试弄清楚如何在 Windows 下安装 .csr 证书,但可能唯一的方法是将其转换为其他格式(也许使用 openssl),但我有不知道怎么办。

您有什么建议吗?

I'm trying to figure out how to install .csr certificate under Windows but probably the only way is to convert it to some other format (maybe with openssl) but I have no idea how.

Do you have any suggestion?

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

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

发布评论

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

评论(1

酒几许 2024-12-06 18:05:01

CSR 文件是证书签名请求。它包含根据您的私钥和有关网站的信息生成证书所需的信息。

CER 是证书本身(您将其安装到 Web 浏览器中)。基本上没有办法直接从一个证书转换为另一个证书,因为您需要密钥来签署证书,但可以做的是生成自签名证书(例如,由用于生成它的相同密钥签名的证书):

openssl x509 -req -in server.csr -signkey server.key -out server.crt

CSR file is the Certificate Signing Request. It contains the information which is needed to generate a certificate based on your private key and information about the WebSite.

CER is the certificate itself (which you install into your Web browser). There is basically no way to convert directly from one to another as you need a key to sign the certificate, but what can do is to generate a self-signed certificate (e.g. certificate signed by the same key which was used to generate it):

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