Esempio n. 1
0
            public Decryptor(uint version, uint iv, uint blockIV)
            {
                this.cipher = new MapleCipher(version, iv);
                List <ICrypter> cryptSeq = InitCryptSeq(version, blockIV);

                cryptSeq.Reverse();
                decryptSeq = cryptSeq.ToArray();
            }
Esempio n. 2
0
 public Encryptor(uint version, uint iv, uint blockIV)
 {
     this.cipher     = new MapleCipher(version, iv);
     this.encryptSeq = InitCryptSeq(version, blockIV).ToArray();
 }