C# Class Org.BouncyCastle.Crypto.Macs.CMac

Inheritance: IMac
Mostra file Open project: nonorganic/dssnet Class Usage Examples

Public Methods

Method Description
BlockUpdate ( byte inBytes, int inOff, int len ) : void
CMac ( IBlockCipher cipher ) : System
CMac ( IBlockCipher cipher, int macSizeInBits ) : System
DoFinal ( byte outBytes, int outOff ) : int
GetMacSize ( ) : int
Init ( ICipherParameters parameters ) : void
Reset ( ) : void
Update ( byte input ) : void

Private Methods

Method Description
doubleLu ( byte inBytes ) : byte[]

Method Details

BlockUpdate() public method

public BlockUpdate ( byte inBytes, int inOff, int len ) : void
inBytes byte
inOff int
len int
return void

CMac() public method

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

CMac() public method

public CMac ( IBlockCipher cipher, int macSizeInBits ) : System
cipher IBlockCipher
macSizeInBits int
return System

DoFinal() public method

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

GetMacSize() public method

public GetMacSize ( ) : int
return int

Init() public method

public Init ( ICipherParameters parameters ) : void
parameters ICipherParameters
return void

Reset() public method

public Reset ( ) : void
return void

Update() public method

public Update ( byte input ) : void
input byte
return void