HMACBase: TransformFinalBlock

TransformFinalBlock

Processes the final block of data, generating the computed hash.



 Public Function TransformFinalBlock(
	  ByRef InputBuffer ( ) As Byte,
	  ByVal InputOffset As Long,
	  ByVal InputCount As Long ) As Byte ( )

Parameters

InputBuffer
[ByRef] Byte. The final block of data to process.
InputOffset
[ByVal] Long. The starting index of the data to be processed.
InputCount
[ByVal] Long. The number of bytes to be processed.

Return Values

Byte() -  The processed data. This is a copy of the InputBuffer data.

Remarks

The returned array is a copy of InputBuffer with a length the same as InputCount. To retrieve the hash value, call the Hash property.

See Also

Project CorLib Overview

Class HMACBase Overview