C# Class NBitcoin.BouncyCastle.Crypto.Digests.GeneralDigest

Inheritance: IDigest, IMemoable
Show file Open project: Nethereum/Nethereum Class Usage Examples

Public Methods

Method Description
BlockUpdate ( byte input, int inOff, int length ) : void
Copy ( ) : IMemoable
DoFinal ( byte output, int outOff ) : int
Finish ( ) : void
GeneralDigest ( ) : System
GeneralDigest ( GeneralDigest t ) : System
GetByteLength ( ) : int
GetDigestSize ( ) : int
ProcessBlock ( ) : void
ProcessLength ( long bitLength ) : void
ProcessWord ( byte input, int inOff ) : void
Reset ( ) : void
Reset ( IMemoable t ) : void
Update ( byte input ) : void

Protected Methods

Method Description
CopyIn ( GeneralDigest t ) : void

Method Details

BlockUpdate() public method

public BlockUpdate ( byte input, int inOff, int length ) : void
input byte
inOff int
length int
return void

Copy() public abstract method

public abstract Copy ( ) : IMemoable
return IMemoable

CopyIn() protected method

protected CopyIn ( GeneralDigest t ) : void
t GeneralDigest
return void

DoFinal() public abstract method

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

Finish() public method

public Finish ( ) : void
return void

GeneralDigest() public method

public GeneralDigest ( ) : System
return System

GeneralDigest() public method

public GeneralDigest ( GeneralDigest t ) : System
t GeneralDigest
return System

GetByteLength() public method

public GetByteLength ( ) : int
return int

GetDigestSize() public abstract method

public abstract GetDigestSize ( ) : int
return int

ProcessBlock() public abstract method

public abstract ProcessBlock ( ) : void
return void

ProcessLength() public abstract method

public abstract ProcessLength ( long bitLength ) : void
bitLength long
return void

ProcessWord() public abstract method

public abstract ProcessWord ( byte input, int inOff ) : void
input byte
inOff int
return void

Reset() public method

public Reset ( ) : void
return void

Reset() public abstract method

public abstract Reset ( IMemoable t ) : void
t IMemoable
return void

Update() public method

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