标签:
C#可以对密码进行加密:
FormsAuthentication.HashPasswordForStoringInConfigFile(string,"MD5")
string需要加密的字符串。
“MD5”为加密算法,也可以选择“SHA1”。
需要添加System.Web引用,增加using System.Web.Security; 命名空间。
C#基础——密码加密
原文地址:http://www.cnblogs.com/bluewhy/p/5063873.html