aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/md5.h')
-rw-r--r--src/microhttpd/md5.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/microhttpd/md5.h b/src/microhttpd/md5.h
index 15d620d7..077b2e8c 100644
--- a/src/microhttpd/md5.h
+++ b/src/microhttpd/md5.h
@@ -29,7 +29,7 @@
29 29
30#define MD5_DIGEST_SIZE 16 30#define MD5_DIGEST_SIZE 16
31 31
32struct MD5Context 32struct MD5Context
33{ 33{
34 uint32_t buf[4]; 34 uint32_t buf[4];
35 uint32_t bits[2]; 35 uint32_t bits[2];
@@ -37,15 +37,16 @@ struct MD5Context
37}; 37};
38 38
39 39
40void 40void HIDDEN_SYMBOL
41MD5Init(struct MD5Context *ctx); 41MD5Init(struct MD5Context *ctx);
42 42
43void 43void HIDDEN_SYMBOL
44MD5Update(struct MD5Context *ctx, 44MD5Update(struct MD5Context *ctx,
45 const void *buf, 45 const void *buf,
46 unsigned len); 46 unsigned len);
47 47
48void MD5Final(unsigned char digest[MD5_DIGEST_SIZE], 48void HIDDEN_SYMBOL
49 struct MD5Context *ctx); 49MD5Final(unsigned char digest[MD5_DIGEST_SIZE],
50 struct MD5Context *ctx);
50 51
51#endif /* !MD5_H */ 52#endif /* !MD5_H */