C
void HashAddROMData( HASH_SUM* theSum, ROM BYTE* data, WORD len );
Description
Adds data to the hash sum.
Preconditions
The hash sum has already been initialized
Parameters
Parameters |
Description |
theSum |
hash context state |
data |
the data to be added to the hash sum |
len |
length of data |
Returns
None
Remarks
This function calls the appropriate hashing function based on the hash typed defined in theSum.
This function is aliased to HashAddData on non-PIC18 platforms.