OpenSSL.Core.Native.EVP_CipherUpdate C# (CSharp) Method

EVP_CipherUpdate() private method

private EVP_CipherUpdate ( IntPtr ctx, byte outb, int &outl, byte inb, int inl ) : int
ctx System.IntPtr
outb byte
outl int
inb byte
inl int
return int
        public static extern int EVP_CipherUpdate(IntPtr ctx, byte[] outb, out int outl, byte[] inb, int inl);
Native