Close the digest, producing the final digest value. The doFinal call leaves the digest reset.

Namespace: LLCryptoLib.Hash
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public int DoFinal(
	byte[] output,
	int outOff
)
Visual Basic
Public Function DoFinal ( _
	output As Byte(), _
	outOff As Integer _
) As Integer
Visual C++
public:
int DoFinal(
	array<unsigned char>^ output, 
	int outOff
)

Parameters

output
Type: array<System..::..Byte>[]()[][]
the array the digest is to be copied into.
outOff
Type: System..::..Int32
the offset into the out array the digest is to start at.

Return Value

The digest size

See Also