<< Previous | Next >> | |
|
void md5_append( md5_state_t * pms, char * data, int nbytes );
Description
- This function will take a buffer and compute the MD5 hash of its contents, combined with all previous data passed to it. This function can be called several times to generate the hash of a large amount of data.
Parameters
- md5_append
- Pointer to the
md5_state_t
structure that was initialized bymd5_init
.
- data
- Pointer to the data to be hashed.
- nbytes
- Length of the data to be hashed.
Library
- MD5.LIB
Dynamic C Functions | << Previous | Next >> | rabbit.com |