MD5加密的问题(.NET2003和.NET2005)
我在.NET2003里可以用:strings=System.Web.Security.FormsAuthentication.HashPasswordForStoring...
我在.NET2003里可以用:
string s = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strPsswd, "MD5")
但是在.NET2005里就不行了。。。我在2005里应该怎么写?
都不行~~~2005里貌似没有FormsAuthentication了! 展开
string s = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strPsswd, "MD5")
但是在.NET2005里就不行了。。。我在2005里应该怎么写?
都不行~~~2005里貌似没有FormsAuthentication了! 展开
5个回答
展开全部
这是一个方法,把它写在一个类离,调用就可以了
public static string psmd5(string password)
{
System.Security.Cryptography.MD5 md5 = System.Security.Cryptography.MD5.Create();
byte[] bytes = new byte[16];
System.Text.ASCIIEncoding asc = new System.Text.ASCIIEncoding();
bytes = md5.ComputeHash(asc.GetBytes(password));
return Convert.ToBase64String(bytes);
}
public static string psmd5(string password)
{
System.Security.Cryptography.MD5 md5 = System.Security.Cryptography.MD5.Create();
byte[] bytes = new byte[16];
System.Text.ASCIIEncoding asc = new System.Text.ASCIIEncoding();
bytes = md5.ComputeHash(asc.GetBytes(password));
return Convert.ToBase64String(bytes);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strPwd, "MD5");
可以用啊。我的项目里面就是这样写的。
可以用啊。我的项目里面就是这样写的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
FormsAuthentication.HashPasswordForStoringInConfigFile(Source, "MD5");
就行了
就行了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(password, "MD5").ToString();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(s, "MD5");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询