C#中的DES加解密方法
摘要:
const string KEY_64 = "VavicApp";const string IV_64 = "VavicApp"; //注意了,是8个字符,64位 public string Encode(string data) { byte[] byKey = System.Text.ASCIIEncoding.ASCII.GetBytes(K... 阅读全文
posted @ 2005-06-24 15:53 Cdo 阅读(784) 评论(1) 推荐(0) 编辑