ICryptoTransform: TransformBlock

TransformBlock

Transforms a block of plain text data, placing the ciphered text in the output buffer.



 Public Function TransformBlock(
	  ByRef InputBuffer ( ) As Byte,
	  ByVal InputOffset As Long,
	  ByVal InputCount As Long,
	  ByRef OutputBuffer ( ) As Byte,
	  ByVal OutputOffset As Long ) As Long

Parameters

InputBuffer
[ByRef] Byte. The plain text to be transformed.
InputOffset
[ByVal] Long. The starting index to begin transforming.
InputCount
[ByVal] Long. The number of bytes to be processed.
OutputBuffer
[ByRef] Byte. The array to place the transformed data.
OutputOffset
[ByVal] Long. The starting index to begin placing the transformed data.

Return Values

Long -  The number of byte actually placed in the output buffer during this call.

See Also

Project CorLib Overview

Class ICryptoTransform Overview