摘要: private string GetMD5Hash(string input) { System.Security.Cryptography.MD5CryptoServiceProvider x = new System.Security.Cryptography.MD5CryptoServiceProvider(); byte[] bs = System.Text.Encoding.UTF8.GetBytes(input); bs = x.ComputeHash(bs); System.Text.StringBuilder... 阅读全文
posted @ 2011-10-28 13:48 许明吉博客 阅读(359) 评论(0) 推荐(0) 编辑