在凭证管理器服务中存储凭证
我有一些凭据(用户名和密码),但我不知道将它们存储在哪里。
我听说有一个应用程序在 Windows 凭据服务中存储凭据,因此我研究了这个选项。这看起来很理想。只需将敏感信息存储在 Windows 服务中,而不必担心将它们存储在您自己的注册表项中。
不幸的是,我很快发现这并不是那么简单。我在 MSDN 中找到的唯一帮助是 C 语言。然后我想我一定是弄错了,但后来我下载了 Cain,并看到了一个用于解码凭据管理器密码的条目。
有没有办法在.NET 中使用这个功能?请告诉我。
I have some credentials (username and a password), and I cannot figure out where to store them.
I heard about an application storing credentials in the Windows Credential Service, so I looked into this option. It seemed ideal. Just store sensitive information in a Windows Service, and not have to worry about storing them in your own registry key.
Unfortunately, I soon found out this was not so simple. The only help I found in MSDN was in C. I then thought I must have been mistaken, but then I downloaded Cain, and saw an entry for decoding credential manager passwords.
Is there a way to use this feature in .NET? Please let me know.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用互操作才能在 .NET 中使用凭据管理 API,但幸运的是,其他人已经完成了大部分艰苦工作:
使用 .NET Framework 2.0 进行凭据管理
You have to use interop to use the Credential Management API in .NET, but fortunately, somebody else has already done most of the hard work:
Credential Management with the .NET Framework 2.0