| QuickHash Library | C++ Interface |
|
CCRC16C::Update
void Update( const unsigned char* pSrc, unsigned int nSrcLength );
void Update( const char* pSrc );
Parameters
pSrc
[in]
In the first case - pointer to the continuous memory block with which to update the CCRC16C object.
In the second case - pointer to the null-terminated string with which to update the CCRC16C object.
nSrcLength
[in] Length in bytes of the memory block.
Remarks
void Update( const unsigned char* pSrc, unsigned int nSrcLength );
Updates the CCRC16C object with the memory block pointed by pSrc. Call this member function for each continuous memory block of the data for which the checksum is calculated.
void Update( const char* pSrc );
Updates the CCRC16C object with the null-terminated string pointed by pSrc. Call this member function for each null-terminated string for which the checksum is calculated.
To retrieve the checksum after using Update, call Final or FinalHex.
Example
See the example for CCRC16C::Final.
CCRC16C Overview | Class Members | Useful Links | HashCalc
See Also CCRC16C::Final, CCRC16C::FinalHex
| Send Feedback to SlavaSoft Inc. | Tell a friend about QuickHash Library |