Update the message digest with a block of bytes.
Namespace: LLCryptoLib.HashAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
public void BlockUpdate(
byte[] input,
int inOff,
int length
) |
Visual Basic |
---|
Public Sub BlockUpdate ( _
input As Byte(), _
inOff As Integer, _
length As Integer _
) |
Visual C++ |
---|
public:
void BlockUpdate(
array<unsigned char>^ input,
int inOff,
int length
) |
Parameters
- input
- Type: array<System..::..Byte>[]()[][]
the byte array containing the data.
- inOff
- Type: System..::..Int32
the offset into the byte array where the data starts.
- length
- Type: System..::..Int32
the length of the data.
See Also