WEB开发网
开发学院WEB开发ASP.NET ASP.Net中的MD5加密 阅读

ASP.Net中的MD5加密

 2006-12-23 17:19:17 来源:WEB开发网   
核心提示:其实在asp.net编程中,不用调用md5.asp来加密数据,ASP.Net中的MD5加密,在DotNet中有自带的类:System.Web.Security.HashPassWordForStoringInConfigFile() public string md5(string str,int code) { if

其实在asp.net编程中,不用调用md5.asp来加密数据。在DotNet中有自带的类:System.Web.Security.HashPassWordForStoringInConfigFile()

public string md5(string str,int code)
{
if(code==16) //16位MD5加密(取32位加密的9~25字符)
{
return System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(str,"MD5").ToLower().Substring(8,16) ;
}

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

return "00000000000000000000000000000000";
}

Tags:ASP Net MD

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接