Calculates the hash for a Leaf node.

Namespace: Classless.Hasher.Methods
Assembly: Classless.Hasher (in Classless.Hasher.dll) Version: 0.9.4179.24336

Syntax

C#
protected byte[] LeafHash(
	byte[] data,
	int offset,
	int count
)
Visual Basic
Protected Function LeafHash ( _
	data As Byte(), _
	offset As Integer, _
	count As Integer _
) As Byte()
Visual C++
protected:
array<unsigned char>^ LeafHash(
	array<unsigned char>^ data, 
	int offset, 
	int count
)

Parameters

data
Type: array<System..::..Byte>[]()[][]
The data to hash.
offset
Type: System..::..Int32
Where in the data array to start hashing.
count
Type: System..::..Int32
How many bytes in the data array to hash.

Return Value

The resulting Leaf hash.

See Also