|
QuickHash Library |
API |
|
SL_RIPEMD256_Update
void SL_HASHCALL SL_RIPEMD256_Update( void*
pContext, const void* pSrc, unsigned int nSrcLength
);
Parameters
pContext
[in/out] Pointer to the context.
pSrc
[in] Pointer to the
continuous memory block with which to update the context.
nSrcLength
[in] Length in bytes
of the memory block.
Remarks
Updates the context pointed by pContext with the memory block
pointed by pSrc. Call this function for each continuous memory
block of the data for which the message digest is calculated. To retrieve the digest after using
SL_RIPEMD256_Update, call SL_RIPEMD256_Final or SL_RIPEMD256_FinalHex.
Example
See the example for
SL_RIPEMD256_Final.
RIPEMD256 API Overview
| RIPEMD256 API Functions
|
Useful Links | HashCalc
See Also
SL_RIPEMD256_UpdateStr,
SL_RIPEMD256_Final,
SL_RIPEMD256_FinalHex,
SL_RIPEMD256_Init
|