IDataHasherAddData Method (Byte, Int32, Int32)
|
Updates the digest using the specified array of bytes, starting at the specified offset.
Namespace:
Guardtime.KSI.Hashing
Assembly:
ksi-net-api (in ksi-net-api.dll) Version: 3.11.534.0 (3.11.534.0)
SyntaxIDataHasher AddData(
byte[] data,
int offset,
int length
)
Function AddData (
data As Byte(),
offset As Integer,
length As Integer
) As IDataHasher
IDataHasher^ AddData(
array<unsigned char>^ data,
int offset,
int length
)
abstract AddData :
data : byte[] *
offset : int *
length : int -> IDataHasher
Parameters
- data
- Type: SystemByte
the list of bytes. - offset
- Type: SystemInt32
the offset to start from in the array of bytes. - length
- Type: SystemInt32
the number of bytes to use, starting at the offset.
Return Value
Type:
IDataHasherthe same DataHasher object for chaining calls
See Also