C# Class OpenSSL.Crypto.DecryptCipherContext

Inheritance: OpenSSL.Core.Base, IDisposable
Mostrar archivo Open project: langhuihui/csharprtmp

Public Methods

Method Description
Decrypt ( byte input, byte iv, int count ) : byte[]
Decrypt ( byte input, int count ) : byte[]
DecryptCipherContext ( Cipher cipher, byte key, byte iv, int padding ) : System

Protected Methods

Method Description
OnDispose ( ) : void

Private Methods

Method Description
SetupIV ( byte iv ) : byte[]
SetupKey ( byte key ) : byte[]

Method Details

Decrypt() public method

public Decrypt ( byte input, byte iv, int count ) : byte[]
input byte
iv byte
count int
return byte[]

Decrypt() public method

public Decrypt ( byte input, int count ) : byte[]
input byte
count int
return byte[]

DecryptCipherContext() public method

public DecryptCipherContext ( Cipher cipher, byte key, byte iv, int padding ) : System
cipher Cipher
key byte
iv byte
padding int
return System

OnDispose() protected method

protected OnDispose ( ) : void
return void