public static string Get32MD5(string str)
{
byte[] b = System.Text.Encoding.Default.GetBytes(str);
b = new System.Security.Cryptography.MD5CryptoServiceProvider().ComputeHash(b);
string ret = "";
for (int i = 0; i < b.Length; i++)
{
ret += b[i].ToString("X").PadLeft(2, '0');
}
return ret;
}
// 试试以下之一:
byte[] b = System.Text.Encoding.UTF8.GetBytes(str);
byte[] b = System.Text.Encoding.Unicode.GetBytes(str);
byte[] b = System.Text.Encoding.GetEncoding("GB18030").GetBytes(str);