5 typedef unsigned int uint32;
7 typedef unsigned long uint32;
16 void MD5Init(struct MD5Context *context);
17 void MD5Update(struct MD5Context *context, unsigned char const *buf,
19 void MD5Final(unsigned char digest[16], struct MD5Context *context);
20 void MD5Transform(uint32 buf[4], uint32 const in[16]);
23 * This is needed to make RSAREF happy on some MS-DOS compilers.
25 typedef struct MD5Context MD5_CTX;