67typedef uint8_t md5_byte_t;
68typedef uint32_t md5_word_t;
73typedef struct md5_state_s {
83void md5_append(
md5_state_t *pms,
const md5_byte_t *data,
int nbytes);
86void md5_finish(
md5_state_t *pms, md5_byte_t digest[16]);
Define the state of the MD5 Algorithm.