SmartAssembly.Zip.SimpleZip.ZipAndEncrypt C# (CSharp) Method

ZipAndEncrypt() public static method

public static ZipAndEncrypt ( byte buffer, byte key, byte iv ) : byte[]
buffer byte
key byte
iv byte
return byte[]
        public static byte[] ZipAndEncrypt(byte[] buffer, byte[] key, byte[] iv)
        {
            return Zip(buffer, 2, key, iv);
        }