|
QuickHash Library |
Type Library |
|
TIGER_Update
void TIGER_Update( [ in,out
]TIGER_Context* pContext, [ in , size_is( nSrcLength ) ] const void*
pSrc, [ in ] int nSrcLength );
Parameters
pContext
[in/out] A memory buffer
that is used as the context.
Note. All predefined types are specified in the
Predefined Types List.
pSrc
[in] A
continuous memory block with which to update the context.
nSrcLength
[in] Length in bytes
of the memory block.
Remarks
Updates (based on
TIGER hash
algorithm) the pContext context with the pSrc
memory block. Call this function for each continuous memory
block of the data for which the message digest is calculated. To retrieve the digest after using
TIGER_Update, call
TIGER_Final or
TIGER_FinalHex.
Note. Before the first call to TIGER_Update,
TIGER_UpdateStr,
TIGER_Final or
TIGER_FinalHex functions, the context
must be initialized with
TIGER_Init.
VB Example
See the example for
TIGER_Final.
Type Library Overview
| Type Library Functions
|
Useful Links | HashCalc
See Also
TIGER_UpdateStr,
TIGER_Final,
TIGER_FinalHex,
TIGER_Init
|