如何将 ldap_sasl_bind_s() 与 SSL、DN、密码一起使用(无客户端证书)

发布于 2024-08-15 23:39:11 字数 154 浏览 11 评论 0原文

我有 ldap_sasl_bind_s() 与来自“C”Windows 程序的 SSL 和客户端证书(没有 DN 和密码)正常工作。 当我使用 SSL、DN 和密码(无客户端证书)调用 ldap_sasl_bind_s() 时,它会抛出空指针异常。这应该有效还是我应该使用另一个 api 调用?

I have ldap_sasl_bind_s() working fine with SSL and client cert (without DN and password) from 'C' windows program.
When I call ldap_sasl_bind_s() using SSL, DN and password (no client cert) it throws null pointer exception. Should this work or should I be using another api call?

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

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

发布评论

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

评论(1

撧情箌佬 2024-08-22 23:39:11

我在 Sun LDAP SDK 文档中找到了答案。即使客户端未使用客户端证书身份验证,它仍然需要在之前的 ldapssl_client_init() 调用中传递 cert7 数据库文件,因为客户端会验证服务器证书是否由 cert7 数据库中定义的 cacert 签名。

I found the answer in the Sun LDAP SDK doc. Even if the client is not using client cert auth, it still needs to pass the cert7 database file on the previous ldapssl_client_init() call as the client verifies the server cert was signed by the cacert defined in the cert7 db.

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