摘要:
#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.... 阅读全文