示例#1
0
        public override byte[] Do()
        {
            var byteIO = new ByteIO(_byteBuffer);

            while (getDecryption(byteIO))
            {
            }

            return(byteIO.ToByteArray());
        }
示例#2
0
        public override byte[] Do()
        {
            var byteIO = new ByteIO(_byteBuffer);

            int nullPosition = createPassLengthPosition(byteIO.Length + sizeof(int));

            byteIO.Add(0, nullPosition);

            for (int i = 0; i < _levelCount; i++)
            {
                getEncription(byteIO);
            }

            return(byteIO.ToByteArray());
        }