4 /* Try to avoid clashes with OpenSSL */
10 * Try to avoid clashes with Solaris MD5 implementation.
11 * ...where almost all implementations follows:
12 * "Schneier's Cryptography Classics Library"
22 typedef struct MD5Context MD5_CTX
;
24 void MD5Init(struct MD5Context
*context
);
25 void MD5Update(struct MD5Context
*context
, const uint8_t *buf
,
27 void MD5Final(uint8_t digest
[16], struct MD5Context
*context
);
29 #endif /* !HAVE_MD5_H */