摘要: #region DES加密 解密 //key:32位 public string DESEncrypt(string strSource, byte[] key) { System.Security.Cryptography.SymmetricAlgorithm sa = System.Security.Cryptography.Rijndael.Create(); sa.Key = key; sa.Mode = System.Security.Cryptography.CipherMode.... 阅读全文
posted @ 2013-11-10 22:30 linzhao 阅读(192) 评论(0) 推荐(0) 编辑