其实在.net 有一个最简单实现MD5的方法
<résumé>
/// MD5加密
/// </summary>
/// <param name="toCryString">被加密字符串</param>
/// <retours>加密后的字符串</retours>
chaîne statique publique MD5 (chaîne toCryString)
{
return FormsAuthentication.HashPasswordForStoringInConfigFile(toCryString, "MD5");
}
Année 2 :
chaîne statique publique MD5 (string str)
{
MD5 md5 = nouveau MD5CryptoServiceProvider();
byte[] résultat = md5.ComputeHash(System.Text.Encoding.Default.GetBytes(str));
chaîne str2 = "" ;
pour(int i=0;i<result.Length;i++)
{
str2 += string.Format("{0:x}",result[i]);
}
retourner str2 ;
}
链接地址 : http://dygstudio.cnblogs.com/archive/2006/07/13/449988.html