using System.Security.Cryptography;
using System.Text;
/// <summary>
/// MD5加密
/// </summary>
/// <param name="sDataIn"></param>
/// <returns></returns>
public string GetMD5(string sDataIn)
{
System.Security.Cryptography.MD5CryptoServiceProvider md5=new System.Security.Cryptography.MD5CryptoServiceProvider();
byte[]bytValue,bytHash;
bytValue = System.Text.Encoding.UTF8.GetBytes(sDataIn);
bytHash = md5.ComputeHash(bytValue);
md5.Clear();
string sTemp="";
for(int i=0;i<bytHash.Length;i++)
{
sTemp+=bytHash[i].ToString("X").PadLeft(2,'0');
}
return sTemp.ToUpper();
}