如何在 C# 2.0 中加密 Web.config 中的用户名和密码
我的 Web.config 中有以下条目,并且我使用 .NET 2.0 和 C# 进行编码。
<add key="userName" value="s752549"/>
<add key="userPassword" value="Delhi@007"/>
现在我希望对其进行加密,以便没有人可以看到它,而且这些密码可能会经常更改(每十五天)。
I have the entries below in my Web.config and I am using .NET 2.0 and C# for coding.
<add key="userName" value="s752549"/>
<add key="userPassword" value="Delhi@007"/>
Now I want this to be encrypted so that nobody can see it, and also these passwords may change frequently (every fifteen days).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只是想补充一点,标记的答案已完成 99%,但它没有提供如何指定 Web 配置的位置。我想我不会在互联网上扎根,而是发布完整的命令。因此,这是我执行的命令
Just wanted to add to this, the marked answer was 99% complete, but it didn't provide how to specify the location of the web config. Rather than root around the internet, thought I'd just post the complete command. As such, here is the command I executed
您可以将用户名和密码放入单独的部分并仅加密该部分。例如:
然后使用aspnet_regiis
You could put the username and password into a separate section and encrypt this section only. For example:
and then use aspnet_regiis
您可以保护/取消保护 .NET 中的整个配置部分。
有关详细信息,请参阅 http://www.codeproject.com /Articles/38188/Encrypt-Your-Web-config-Please.aspx
You can Protect / Unprotect entire config sections in .NET.
For more info see http://www.codeproject.com/Articles/38188/Encrypt-Your-Web-config-Please.aspx
您可以使用 aspnet_regiis,请参阅 http://msdn。 microsoft.com/en-us/library/zhhddkxy(v=VS.80).aspx
you could use aspnet_regiis, see http://msdn.microsoft.com/en-us/library/zhhddkxy(v=VS.80).aspx