C# Class Org.BouncyCastle.Crypto.Modes.CfbBlockCipher

Inheritance: IBlockCipher
Show file Open project: red-gate/iTextSharp-4.1.6 Class Usage Examples

Public Methods

Method Description
CfbBlockCipher ( IBlockCipher cipher, int bitBlockSize ) : System
DecryptBlock ( byte input, int inOff, byte outBytes, int outOff ) : int
EncryptBlock ( byte input, int inOff, byte outBytes, int outOff ) : int
GetBlockSize ( ) : int
GetUnderlyingCipher ( ) : IBlockCipher
Init ( bool forEncryption, ICipherParameters parameters ) : void
ProcessBlock ( byte input, int inOff, byte output, int outOff ) : int
Reset ( ) : void

Method Details

CfbBlockCipher() public method

public CfbBlockCipher ( IBlockCipher cipher, int bitBlockSize ) : System
cipher IBlockCipher
bitBlockSize int
return System

DecryptBlock() public method

public DecryptBlock ( byte input, int inOff, byte outBytes, int outOff ) : int
input byte
inOff int
outBytes byte
outOff int
return int

EncryptBlock() public method

public EncryptBlock ( byte input, int inOff, byte outBytes, int outOff ) : int
input byte
inOff int
outBytes byte
outOff int
return int

GetBlockSize() public method

public GetBlockSize ( ) : int
return int

GetUnderlyingCipher() public method

public GetUnderlyingCipher ( ) : IBlockCipher
return IBlockCipher

Init() public method

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

ProcessBlock() public method

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

Reset() public method

public Reset ( ) : void
return void