/* typedef a 32 bit type */1typedef unsigned long int UINT_32;23/* Data structure for MD5 (Message Digest) computation */4typedef struct {5UINT_32 i[2]; /* number of _bits_ handled mod 2^64 */6UINT_32 buf[4]; /* scratch buffer */7unsigned char in[64]; /* input buffer */8unsigned char digest[16]; /* actual digest after MD5Final call */9} MD5_CTX;1011void MD5Final(MD5_CTX *);12void MD5Update(MD5_CTX *, unsigned char *, unsigned int);13void MD5Init(MD5_CTX *);141516