summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-04-24 14:53:03 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:04:17 -0500
commit293cef7024e11eaf26c2ae0850c47799fb70715e (patch)
tree11a7a859dfbef8743445801fa0f76dfb6a867c5d /source4
parent94af743baab2e32912bbc6f48e9ea54bda818593 (diff)
downloadsamba-293cef7024e11eaf26c2ae0850c47799fb70715e.tar.gz
samba-293cef7024e11eaf26c2ae0850c47799fb70715e.tar.bz2
samba-293cef7024e11eaf26c2ae0850c47799fb70715e.zip
r15204: Fix MD5Update prototype
(This used to be commit d2819d4e1f73675925d292c0558cb663779a5a6a)
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/crypto/md5.h8
1 files changed, 4 insertions, 4 deletions
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 */