从PHP访问证书私钥,证书密钥存储在Windows证书存储中

发布于 2024-12-02 21:46:00 字数 118 浏览 0 评论 0原文

我们需要在 PHP 应用程序中使用证书进行 SOAP 调用,我们需要一种方法来读取 Windows 证书存储中存储的私钥。该环境由 Windows 2008 R2、IIS 7 组成。

我们的最佳选择是什么?

We have an requirement to make SOAP calls using certificates in our PHP application, we need a way to read the private key stored in windows certificate store. The environment comprises of windows 2008 R2, IIS 7.

Whats our best option for the same?

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

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

发布评论

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

评论(1

梦回梦里 2024-12-09 21:46:01

您可以从 Windows 导出加密的、受密码保护的证书,将其转换为 PHP 可以读取的格式,并将其保留在运行 PHP 的 Web 服务器上。

PHP 可以读取 RSA 加密(base 64 编码)X.509 证书和私钥。

查看 http://php.net/manual/en/function.openssl -private-decrypt.php

我过去曾经这样做过。

You can export the encrypted, password protected, certificate from Windows, convert it to a format that PHP can read, and leave it on the web server where PHP is running.

PHP can read RSA encrypted (base 64 encoded) X.509 certificates and private keys.

Check out http://php.net/manual/en/function.openssl-private-decrypt.php.

I've done this in the past.

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