aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/md5.c')
-rw-r--r--src/microhttpd/md5.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/microhttpd/md5.c b/src/microhttpd/md5.c
index 4de888a8..d267e803 100644
--- a/src/microhttpd/md5.c
+++ b/src/microhttpd/md5.c
@@ -37,7 +37,7 @@
37 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious 37 * Start MD5 accumulation. Set bit count to 0 and buffer to mysterious
38 * initialization constants. 38 * initialization constants.
39 * 39 *
40 * @param ctx must be a `struct MD5Context *` 40 * @param ctx_ must be a `struct MD5Context *`
41 */ 41 */
42void 42void
43MHD_MD5Init (void *ctx_) 43MHD_MD5Init (void *ctx_)
@@ -59,9 +59,9 @@ MD5Transform (uint32_t state[4],
59 59
60 60
61/** 61/**
62 * Final wrapup, fill in digest and zero out ctx. 62 * Final wrapup--call MD5Pad, fill in digest and zero out ctx.
63 * 63 *
64 * @param ctx must be a `struct MD5Context *` 64 * @param ctx_ must be a `struct MD5Context *`
65 */ 65 */
66void 66void
67MHD_MD5Final (void *ctx_, 67MHD_MD5Final (void *ctx_,
@@ -264,6 +264,10 @@ MD5Transform (uint32_t state[4],
264/** 264/**
265 * Update context to reflect the concatenation of another buffer full 265 * Update context to reflect the concatenation of another buffer full
266 * of bytes. 266 * of bytes.
267 *
268 * @param ctx_ must be a `struct MD5Context *`
269 * @param input bytes to add to hash
270 * @param len the number of bytes in @a data
267 */ 271 */
268void 272void
269MHD_MD5Update (void *ctx_, 273MHD_MD5Update (void *ctx_,