摘要: /**//// /// DES /// public class DES_ { private DES mydes; public string Key; public string IV; /**//// /// 对称加密类的构造函数 /// public DES_(string key) { mydes = new DESCryptoServiceProvider(); Key = key; ... 阅读全文
posted @ 2014-03-19 10:57 Follow-your-heart 阅读(370) 评论(0) 推荐(0) 编辑