DataHasherAddData Method (Byte, Int32, Int32)
|
Updates the digest using the specified array of bytes, starting at the specified offset.
Namespace:
Guardtime.KSI.Crypto.BouncyCastle.Hashing
Assembly:
ksi-net-api-crypto-bouncycastle (in ksi-net-api-crypto-bouncycastle.dll) Version: 3.11.534.0 (3.11.534.0)
Syntaxpublic IDataHasher AddData(
byte[] data,
int offset,
int length
)
Public Function AddData (
data As Byte(),
offset As Integer,
length As Integer
) As IDataHasher
public:
virtual IDataHasher^ AddData(
array<unsigned char>^ data,
int offset,
int length
) sealed
abstract AddData :
data : byte[] *
offset : int *
length : int -> IDataHasher
override 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
Implements
IDataHasherAddData(Byte, Int32, Int32)
See Also