如何在 PHP 中加载 X509 证书请求?
openssl_csr_export 能够接受请求并将其导出为字符串,但是接受请求并返回资源的相反函数在哪里?
openssl_csr_export is able to take a request and export it as a string, but where is the opposite function which takes in the request and returns the resource?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 phpseclib 纯 PHP CSR 编码器/解码器:
Using phpseclib a pure PHP CSR encoder / decoder:
您不能做相反的事情,而且实际上也没有必要这样做 - 您对 CSR 资源所能做的就是对其进行签名或导出,但不能进行编辑。
要签署 CSR,您可以使用导出的字符串值,无需为此使用 CSR 资源。
You can't do the opposite and there really shouldn't be any need to do it anyway - all you can do with a CSR resource is either to sign it or export it but no editing.
To sign a CSR you can use the exported string value, no need to use CSR resource for that.