如何确定连接在 mod_perl 中使用哪个 SSL 客户端证书?
我正在 Perl 中编写一个 Web 服务,该服务将在带有客户端证书的 SSL (HTTPS) 下运行。 如何确定客户端在当前连接中使用哪个证书,以便过滤掉不需要的证书?
注意:Web 服务作为 mod_perl 脚本运行。
I am writing a web service in Perl that will run under SSL (HTTPS) with client certificates.
How can I determine which certificate is being used by the client in the current connection so I can filter out unwanted ones?
Note: the web service is being run as a mod_perl script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 PerlMonks 上找到答案:
使用 Apache::SSLLookup 模块
mod_ssl 环境参考 此处。
Found the answer on PerlMonks:
Use the Apache::SSLLookup module
mod_ssl environment reference here.