2011年6月2日

如何使用RC4进行数据加减密[转]。

摘要: namespace CryptoRC4 { using System; using System.Text; public class clsRC4Engine { private static long m_nBoxLen = 255; protected clsRC4Engine() { } private static void GetKeyBytes( string Key, out byte[] m_nBox ) { long index2 = 0; m_nBox = new byte[m_nBoxLen]; Encoding ascii = Encoding.ASCII; Enco 阅读全文

posted @ 2011-06-02 21:14 ATAK 阅读(282) 评论(0) 推荐(0) 编辑

导航