reWZ.WZAES.DecryptBytes C# (CSharp) Method

DecryptBytes() private method

private DecryptBytes ( byte bytes ) : byte[]
bytes byte
return byte[]
        internal byte[] DecryptBytes(byte[] bytes)
        {
            CheckKeyLength(bytes.Length);
            return DecryptData(bytes, _wzKey);
        }