C# Class Org.BouncyCastle.Crypto.Engines.SkipjackEngine

Inheritance: IBlockCipher
Mostrar archivo Open project: nonorganic/dssnet Class Usage Examples

Public Methods

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

Private Methods

Method Description
G ( int k, int w ) : int
H ( int k, int w ) : int

Method Details

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

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