Calculates the Internal hash of two Child hashes.

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

Syntax

C#
protected byte[] InternalHash(
	byte[] left,
	byte[] right
)
Visual Basic
Protected Function InternalHash ( _
	left As Byte(), _
	right As Byte() _
) As Byte()
Visual C++
protected:
array<unsigned char>^ InternalHash(
	array<unsigned char>^ left, 
	array<unsigned char>^ right
)

Parameters

left
Type: array<System..::..Byte>[]()[][]
The hash of the Left Child node.
right
Type: array<System..::..Byte>[]()[][]
The hash of the Right Child node.

Return Value

The resulting Internal hash.

See Also