Example #1
0
 public XRC4Cipher(string pKey)
 {
     m_pImpl = new TImpl();
     Clear();
     m_pImpl.Init(pKey);
 }
Example #2
0
 public void Clear()
 {
     m_pImpl.Init("Neat & Simple");
 }
Example #3
0
 public XRC4Cipher(string pKey)
 {
     m_pImpl = new TImpl();
     Clear();
     m_pImpl.Init(pKey);
 }