CSP 提供商名称
如何获取我连接的智能卡的 CSP 提供商名称?
我无法访问注册表窗口,因此我找到了一些方法来通过 win API 获取该信息。
我已经看过一些有关 SCardGetCardTypeProviderName 的内容,但似乎不可能在 C# 中找到完整的示例。
how can I get CSP provider name of my connected smartcard?
I couldn't access to registry windows so I'm find some way to achieve that information through win API.
I've already seen something about SCardGetCardTypeProviderName but it seems impossibile to find a complete example in C#.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
certutil
。像这样的事情:
它列出了您的 PC 上当前存在的所有 CSP 提供程序。
You can use
certutil
.Something like this:
It lists all CSP providers that currently exist on your PC.