Active Directory 智能卡授权

发布于 2024-11-01 02:34:59 字数 85 浏览 0 评论 0原文

我正在寻找如何从 C# 客户端应用程序针对 AD 执行智能卡身份验证。我需要使用智能卡登录应用程序。有人可以告诉我在哪里可以找到这方面的 API 吗?谢谢。

Im looking how to perform smart card authentication against AD from C# client application. I need to make logon into application using the smart card. Could somebody give me clue where to find API for this? Thanks.

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

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

发布评论

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

评论(1

陌生 2024-11-08 02:34:59

您可以使用序列化凭证调用 logonuser:

  • 证书的哈希值将成为用户名
  • 智能卡的 PIN 将成为密码

但是要获取证书,您必须枚举 cryptoapi 容器,然后使用 CryptGetKeyParam(KP_CERTIFICATE) 访问证书

you can call logonuser with serialized credential:

  • the hash of the certificate will become the username
  • the PIN of the smart card will become the password

But to get the certificate, you will have to enumerate the cryptoapi containter then access the certificate using CryptGetKeyParam(KP_CERTIFICATE)

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