//MD5加密
public static string GetMD5Code(string text)
{
    
byte[] inBytes = System.Text.Encoding.Default.GetBytes(text);
    System.Security.Cryptography.MD5CryptoServiceProvider md 
= new System.Security.Cryptography.MD5CryptoServiceProvider();
    
byte[] outBytes = md.ComputeHash(inBytes);
    
string s = BitConverter.ToString(outBytes);
    
return s;
}
 posted on 2008-07-18 14:50  ︷起↘嚸.  阅读(175)  评论(0编辑  收藏  举报