2 * UCW Library -- MD5 Message Digest
4 * This file is in public domain (see lib/md5.c).
18 void MD5Init(struct MD5Context *context);
19 void MD5Update(struct MD5Context *context, unsigned char const *buf,
21 void MD5Final(unsigned char digest[16], struct MD5Context *context);
22 void MD5Transform(uint32 buf[4], uint32 const in[16]);
24 #endif /* !_UCW_MD5_H */