摘要:
public static string Std_Encrypt_MD5(string AppKey) { MD5 MD5 = new MD5CryptoServiceProvider(); byte[] datSource = Encoding.GetEncoding("gb2312").GetBytes(AppKey); byte[] newSource = MD5.ComputeHash(datSource); Console.WriteLine(newSource.Length);... 阅读全文