其实在.net 有一个最简单实现MD5的方法
<Zusammenfassung>
/// MD5加密
/// </summary>
/// <param name="toCryString">Erkennen Sie Ihr Ziel</param>
/// <returns>加密后的字符串</returns>
ö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<result.Length;i++)
{
str2 += string.Format("{0:x}",result[i]);
}
return str2;
Weitere
Informationen: http://dygstudio.cnblogs.com/archive/2006/07/13/449988.html