摘要:
// 加密函数 //strText要加密的字符串,strencrKey 密钥, 返回加密后的字符串 密码8位 public static string Encrypt(string strText, string strEncrKey) { byte[] byKey = null;//初始化密钥 byte[] IV = { 0x56, 0x78, 0x90, 0xAB, 0xCD, 0xEF, 0... 阅读全文
posted @ 2009-05-07 10:23
.NET新手入门
阅读(380)
评论(0)
推荐(0)