aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/https/lgl/md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/https/lgl/md5.c')
-rw-r--r--src/daemon/https/lgl/md5.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/daemon/https/lgl/md5.c b/src/daemon/https/lgl/md5.c
index bc1fccbc..8cca27f5 100644
--- a/src/daemon/https/lgl/md5.c
+++ b/src/daemon/https/lgl/md5.c
@@ -212,7 +212,8 @@ MHD_md5_buffer (const char *buffer, size_t len, void *resblock)
212 212
213 213
214void 214void
215MHD_md5_process_bytes (const void *buffer, size_t len, struct MHD_md5_ctx *ctx) 215MHD_md5_process_bytes (const void *buffer, size_t len,
216 struct MHD_md5_ctx *ctx)
216{ 217{
217 /* When we already have some bits in our internal buffer concatenate 218 /* When we already have some bits in our internal buffer concatenate
218 both inputs first. */ 219 both inputs first. */
@@ -292,7 +293,8 @@ MHD_md5_process_bytes (const void *buffer, size_t len, struct MHD_md5_ctx *ctx)
292 It is assumed that LEN % 64 == 0. */ 293 It is assumed that LEN % 64 == 0. */
293 294
294void 295void
295MHD_md5_process_block (const void *buffer, size_t len, struct MHD_md5_ctx *ctx) 296MHD_md5_process_block (const void *buffer, size_t len,
297 struct MHD_md5_ctx *ctx)
296{ 298{
297 uint32_t correct_words[16]; 299 uint32_t correct_words[16];
298 const uint32_t *words = buffer; 300 const uint32_t *words = buffer;