|
QuickHash Library |
API |
|
SL_RIPEMD160_UpdateStr
void SL_HASHCALL SL_RIPEMD160_UpdateStr( void*
pContext, const char* pSrc );
Parameters
pContext
[in/out] Pointer to the context.
pSrc
[in] Pointer to the
null-terminated string with which to update the context.
Remarks
Updates the context pointed by pContext with the
null-terminated string
pointed by pSrc. Call this function for each null-terminated string for which the message digest is calculated. To retrieve the digest after using
SL_RIPEMD160_UpdateStr, call SL_RIPEMD160_Final or SL_RIPEMD160_FinalHex.
Note. The call SL_RIPEMD160_UpdateStr(
pContext, pSrc );
is equivalent to the call SL_RIPEMD160_Update( pContext,
pSrc, strlen( pSrc ) );
RIPEMD160 API Overview
| RIPEMD160 API Functions
|
Useful Links | HashCalc
See Also
SL_RIPEMD160_Update,
SL_RIPEMD160_Final,
SL_RIPEMD160_FinalHex,
SL_RIPEMD160_Init
|