其实在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";
}
新闻热点
疑难解答
图片精选