-
Notifications
You must be signed in to change notification settings - Fork 2
HashGetValue
anatol edited this page Jul 13, 2021
·
1 revision
void HashGetValue(HashObj* pHash , void* pDst , uint32_t size);
Read the resulting hash value calculated by the hash processor referenced by the handle pHash
-
pHash
: handle to the hash processor -
pDst
: pointer to the memory buffer to fill the hash -
size
: size of the memory buffer
- none
- If the actual hash result is longer than
size
- it's truncated - If the actual hash result is shorter than
size
- the remaining part of the result is zeroed - The hash object is left 'intact'. Means - it's possible to add more data and get updated hash result.