纠正:HashPasswordForStoringInConfigFile中的Md5算法并非常用的Md5算法

出处:http://www.kehui.org/index.php?op=article&file=read&aid=16367

本来我也以为System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile中的MD5和常用的一样

可今天一试,结果有很大不同,
比如test,HashPasswordForStoringInConfigFile编码成
C8059E2EC7419F590E79D7F1B774BFE6
而应该是098f6bcd4621d373cade4e832627b4f6


而且不同的机器不同的结果,有些结果正确
一看MSDN的解释,原来是
Given a password and a string identifying the hash type, this routine produces a hash password suitable for storing in a configuration file.

为了和以前的代码兼容和平台兼容,只好自己重新写了MD5的算法,利用System.Security.Cryptography.MD5CryptoServiceProvider
代码如下,大家执行一下就知道了,我就不多说了。


?? <script language="C#" runat="server">
?? string qswhMD5(string str){
?? ??/************qiushuiwuhen(2002-9-27)***************/
?? ??byte[] b=System.Text.Encoding.Default.GetBytes(str);
?? ??b=new System.Security.Cryptography.MD5CryptoServiceProvider().ComputeHash(b);
?? ??string ret="";
?? ??for(int i=0;i
?? ???ret+=b[i].ToString("x").PadLeft(2,'0');
?? ??return ret;
?? }
?? public void encryptString(Object sender, EventArgs e)
?? {
?? ??myMD5.Text=qswhMD5(txtClear.Text);
?? ??MD5.Text =System.Web.Security.FormsAuthentication. HashPasswordForStoringInConfigFile(txtClear.Text, "MD5") ;
?? }
?? </script>
??
??


??? 明文:
???
???
通常用的 MD5:
???


???
HashPasswordForStoringInConfigFile中的 MD5:
???

??

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值