摘要:
#region 字符串加密解密 public static byte[] MakeMD5(byte[] original) { MD5CryptoServiceProvider hashmd5 = new MD5CryptoServiceProvider(); byte[] keyhash = hashmd5.ComputeHash(original); hashmd5 = null; return keyhash; } public static byte[] Encrypt(byte[] original, byte[] key) { TripleDESCryptoS... 阅读全文