摘要: /// /// 加密数据 /// /// 加密文本 /// 加密key /// public static string Encrypt(string Text,string sKey) { DESCryptoServiceProvider des = new DESCryptoServiceProvider(); // byte[] inputByteArray; inputByteArray=Encoding.Default.GetBytes(Text); des.Key = ASCIIEncoding.ASCII.GetBytes(... 阅读全文
posted @ 2014-03-25 13:39 默然的淡然 阅读(124) 评论(0) 推荐(0) 编辑