C# Class OpenSSL.Crypto.EncryptCipherContext

Inheritance: OpenSSL.Core.Base, IDisposable
Mostra file Open project: langhuihui/csharprtmp

Public Methods

Method Description
Encrypt ( byte input, byte iv, int count ) : byte[]
Encrypt ( byte input, int count ) : byte[]
EncryptCipherContext ( 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

Encrypt() public method

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

Encrypt() public method

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

EncryptCipherContext() public method

public EncryptCipherContext ( 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