C
void MD5Calculate( HASH_SUM* theSum, BYTE* result );
Description
This function calculates the hash sum of all input data so far. It is non-destructive to the hash context, so more data may be added after this function is called.
Preconditions
The hash context has been properly initialized.
Parameters
Parameters |
Description |
theSum |
the current hash context |
result |
16 byte array in which to store the resulting hash |
Returns
None