首页 > 编程 > .NET > 正文

技巧应用:ASP.Net中的MD5加密

2024-07-10 13:08:21
字体:
来源:转载
供稿:网友

  其实在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"; 
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表