从PHP访问证书私钥,证书密钥存储在Windows证书存储中
我们需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 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.