标签:
private static string NewMethod(string encypStr) { MD5CryptoServiceProvider provider = new MD5CryptoServiceProvider(); byte[] bytes = Encoding.GetEncoding("GB2312").GetBytes(encypStr); return BitConverter.ToString(provider.ComputeHash(bytes)).Replace("-", ""); }
标签:
原文地址:http://www.cnblogs.com/110abcd/p/4631164.html