摘要: AesManaged - 高级加密标准(AES) 对称算法的管理类 1 public static class EncryptAndDecrypt 2 { 3 //加密 4 public static string Encrypt(string input) 5 { 6 // 盐值 7 string saltValue = "saltValue"; 8 // 密码值 9 string pwdValue = "pwdValue";10 ... 阅读全文
posted @ 2013-03-04 16:08 银河系上的地球 阅读(622) 评论(0) 推荐(0) 编辑