|
QuickHash Library |
API |
|
SL_CRC16_Calculate
void SL_HASHCALL SL_CRC16_Calculate( void*
pDest, const void* pSrc, unsigned int nSrcLength
);
Parameters
pDest
[out] Pointer to the memory
buffer that will receive the checksum.
pSrc
[in] Pointer to the
continuous memory block for which to calculate the checksum.
nSrcLength
[in] Length in bytes
of the memory block.
Remarks
Calculates the checksum for the memory block
pointed by pSrc. The checksum is retrieved in the memory buffer pointed by
pDest. The size of the memory buffer pointed by pDest must be at
least SLC_CRC16_DIGESTSIZE bytes.
Example
#include <string.h>
#include <QuickHash.h>
int main()
{
char string[] = "Test String";
unsigned char checksum[ SLC_CRC16_DIGESTSIZE ];
/*****Calculate the checksum********************************/
SL_CRC16_Calculate( checksum, string, strlen( string ) );
/*****Use the checksum**************************************/
/*...*/
return 0;
}
|
|
CRC16 API Overview
| CRC16 API_Functions
|
Useful Links | HashCalc
See Also
SL_CRC16_CalculateHex,
SL_CRC16_CalculateStr,
SL_CRC16_CalculateStrHex
|