摘要: ``` public static class DESEncryptionUtility { public static DESCryptoServiceProvider keyProvider = new DESCryptoServiceProvider(); //默认密钥向量 public static byte[] Encryption2Byte(string input,byte[] ke 阅读全文
posted @ 2019-12-19 12:22 Hey,Coder! 阅读(655) 评论(0) 推荐(0)
摘要: public static class AESEncryptionUtility { /// <summary> /// AES加密 /// </summary> public static string AESEncrypt(string value, string _aeskey = null) 阅读全文
posted @ 2019-12-19 12:21 Hey,Coder! 阅读(1090) 评论(0) 推荐(0)