Ejemplo n.º 1
0
 public bool InitCipher(byte[] key)
 {
     en = new AESFastEngine();
     en.init(true, key);
     de = new AESFastEngine();
     de.init(false, key);
     return(true);
 }
Ejemplo n.º 2
0
 public CFBBlockCipher(AESFastEngine aesFastEngine, int i)
 {
     throw new System.NotImplementedException();
 }