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