摘要: #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... 阅读全文
posted @ 2013-08-24 13:34 lanmiao 阅读(277) 评论(0) 推荐(0) 编辑