C# Class Org.BouncyCastle.Crypto.Paddings.PaddedBufferedBlockCipher

Inheritance: Org.BouncyCastle.Crypto.BufferedBlockCipher
Show file Open project: red-gate/iTextSharp-4.1.6 Class Usage Examples

Public Methods

Method Description
DoFinal ( byte output, int outOff ) : int
GetOutputSize ( int length ) : int
GetUpdateOutputSize ( int length ) : int
Init ( bool forEncryption, ICipherParameters parameters ) : void
PaddedBufferedBlockCipher ( IBlockCipher cipher ) : System
PaddedBufferedBlockCipher ( IBlockCipher cipher, IBlockCipherPadding padding ) : System
ProcessByte ( byte input, byte output, int outOff ) : int
ProcessBytes ( byte input, int inOff, int length, byte output, int outOff ) : int

Method Details

DoFinal() public method

public DoFinal ( byte output, int outOff ) : int
output byte
outOff int
return int

GetOutputSize() public method

public GetOutputSize ( int length ) : int
length int
return int

GetUpdateOutputSize() public method

public GetUpdateOutputSize ( int length ) : int
length int
return int

Init() public method

public Init ( bool forEncryption, ICipherParameters parameters ) : void
forEncryption bool
parameters ICipherParameters
return void

PaddedBufferedBlockCipher() public method

public PaddedBufferedBlockCipher ( IBlockCipher cipher ) : System
cipher IBlockCipher
return System

PaddedBufferedBlockCipher() public method

public PaddedBufferedBlockCipher ( IBlockCipher cipher, IBlockCipherPadding padding ) : System
cipher IBlockCipher
padding IBlockCipherPadding
return System

ProcessByte() public method

public ProcessByte ( byte input, byte output, int outOff ) : int
input byte
output byte
outOff int
return int

ProcessBytes() public method

public ProcessBytes ( byte input, int inOff, int length, byte output, int outOff ) : int
input byte
inOff int
length int
output byte
outOff int
return int