| QuickHash Library | API |
|
SL_SHA1_CalculateStrHex
void SL_HASHCALL SL_SHA1_CalculateStrHex( void* pDest, const char* pSrc, int bUpper );
Parameters
pDest
[out] Pointer to the text buffer that will receive the message digest.
pSrc
[in] Pointer to the null-terminated string for which to calculate the message digest.
bUpper
[in] Uppercase flag. If bUpper is 0, the received message digest represents a lowercase string, otherwise it represents an uppercase string.
Remarks
Calculates the message digest for the null-terminated string pointed by pSrc. The digest is retrieved as a null-terminated hexadecimal string in the text buffer pointed by pDest. The size of the text buffer pointed by pDest must be at least SLC_SHA1_HEXDIGESTSIZE characters.
Note. The call SL_SHA1_CalculateStrHex( pDest, pSrc, bUpper );
is equivalent to the call SL_SHA1_CalculateHex( pDest, pSrc, strlen( pSrc ), bUpper );
Example
|
SHA1 API Overview | SHA1 API Functions | Useful Links | HashCalc
See Also SL_SHA1_CalculateStr, SL_SHA1_Calculate, SL_SHA1_CalculateHex
| Send Feedback to SlavaSoft Inc. | Tell a friend about QuickHash Library |