C# Class Org.BouncyCastle.Crypto.Tls.CombinedHash

A combined hash, which implements md5(m) || sha1(m).
Inheritance: IDigest
ファイルを表示 Open project: nonorganic/dssnet Class Usage Examples

Public Methods

Method Description
BlockUpdate ( byte input, int inOff, int len ) : void
DoFinal ( byte output, int outOff ) : int
GetByteLength ( ) : int
GetDigestSize ( ) : int
Reset ( ) : void
Update ( byte input ) : void

Private Methods

Method Description
CombinedHash ( ) : System
CombinedHash ( CombinedHash t ) : System

Method Details

BlockUpdate() public method

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

DoFinal() public method

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

GetByteLength() public method

public GetByteLength ( ) : int
return int

GetDigestSize() public method

public GetDigestSize ( ) : int
return int

Reset() public method

public Reset ( ) : void
return void

Update() public method

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