摘要: public static string GetMD5(string sDataIn) { MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider(); byte[] bytValue, bytHash; bytValue = System.Text.Encoding.UTF8.GetBytes(sDataIn); bytHash = md5.ComputeHash(bytValue); ... 阅读全文
posted @ 2011-10-30 20:07 王绚文 阅读(308) 评论(0) 推荐(0) 编辑