From 293cef7024e11eaf26c2ae0850c47799fb70715e Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 24 Apr 2006 14:53:03 +0000 Subject: r15204: Fix MD5Update prototype (This used to be commit d2819d4e1f73675925d292c0558cb663779a5a6a) --- source4/lib/crypto/md5.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source4') diff --git a/source4/lib/crypto/md5.h b/source4/lib/crypto/md5.h index ee688dc8f4..4064d6f003 100644 --- a/source4/lib/crypto/md5.h +++ b/source4/lib/crypto/md5.h @@ -11,9 +11,9 @@ struct MD5Context { uint8_t in[64]; }; -_PUBLIC_ void MD5Init(struct MD5Context *context); -_PUBLIC_ void MD5Update(struct MD5Context *context, const uint8_t *buf, - uint_t len); -_PUBLIC_ void MD5Final(uint8_t digest[16], struct MD5Context *context); +void MD5Init(struct MD5Context *context); +void MD5Update(struct MD5Context *context, const uint8_t *buf, + size_t len); +void MD5Final(uint8_t digest[16], struct MD5Context *context); #endif /* !MD5_H */ -- cgit