其实在.net 有一个最简单实现MD5的方法
/// MD5加密
///
/// Erkennen Sie Ihr Ziel
///
öffentliche statische Zeichenfolge MD5(string toCryString)
{
return FormsAuthentication.HashPasswordForStoringInConfigFile(toCryString, "MD5");
}
Schritt 2:
öffentliche statische Zeichenfolge MD5 (Zeichenfolge str)
{
MD5 md5 = new MD5CryptoServiceProvider();
byte[] result = md5.ComputeHash(System.Text.Encoding.Default.GetBytes(str));
string str2 = "";
for(int i=0;i
str2 += string.Format("{0:x}",result[i]);
}
return str2;
Weitere
Informationen: http://dygstudio.cnblogs.com/archive/2006/07/13/449988.html