Storing Credentials in Credential Manager Service

蓝咒 提交于 2019-11-27 04:42:27

问题


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.


回答1:


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



来源:https://stackoverflow.com/questions/2394721/storing-credentials-in-credential-manager-service

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!