使用Openssl,如何从公钥生成证书请求?
使用 Openssl,如何仅从公钥开始创建证书请求? (无论是否以编程方式)。
With Openssl, how could I create a certificate request, starting only from a public key ? (programmatically or not).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 openssl 或任何其他软件在没有私钥的情况下无法生成 CSR,因为 CSR 必须使用相应的私钥进行签名。
It is not possible, using openssl or any other software, to generate a CSR without the private key because a CSR must be signed with the corresponding private key.
我认为 OpenSSL 不可能做到这一点,因为 CSR 始终使用私钥进行签名。但我发现了一个名为 PKIWidgets 的在线工具,它能够创建“独立”企业社会责任。
您还可以在企业社会责任常见问题解答<中找到更多信息/a>.
I don't think this is possible with OpenSSL, because the CSR is always signed with the private key. But I found an online tool called PKIWidgets which is able to create a "stand-alone" CSR.
You might also find more information in the CSR FAQ.