C# MD5加密没那么麻烦

来源:互联网 发布:以太网网络变压器 编辑:程序博客网 时间:2024/05/16 03:00

/// <summary>
/// MD5 加密函数
/// </summary>
/// <param name="str"></param>
/// <param name="code"></param>
/// <returns></returns>
public static string MD5(string str,int code)
{

if(code==16)
{
return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str,"MD5").ToLower().Substring(8,16) ;
}

if(code==32)
{
return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str,"MD5");
}

return "00000000000000000000000000000000";
}

原创粉丝点击