public static string md5(string str)
{
return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str, "Md5").ToLower();
}
转化为哈希密码
最新推荐文章于 2024-07-27 20:52:44 发布
public static string md5(string str)
{
return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str, "Md5").ToLower();
}