如何在 PHP 中加载 X509 证书请求?

发布于 2024-12-08 10:17:22 字数 62 浏览 1 评论 0原文

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 技术交流群。

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

发布评论

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

评论(2

生死何惧 2024-12-15 10:17:22

使用 phpseclib 纯 PHP CSR 编码器/解码器

<?php
include('File/X509.php');

$x509 = new File_X509();
print_r($x509->loadCSR('...'));
?>

Using phpseclib a pure PHP CSR encoder / decoder:

<?php
include('File/X509.php');

$x509 = new File_X509();
print_r($x509->loadCSR('...'));
?>
柠檬色的秋千 2024-12-15 10:17:22

您不能做相反的事情,而且实际上也没有必要这样做 - 您对 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.

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