aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/https/lgl/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/https/lgl/md5.h')
-rw-r--r--src/daemon/https/lgl/md5.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/daemon/https/lgl/md5.h b/src/daemon/https/lgl/md5.h
index 80793b66..94247e46 100644
--- a/src/daemon/https/lgl/md5.h
+++ b/src/daemon/https/lgl/md5.h
@@ -83,14 +83,14 @@ __MHD_md5_init_ctx (struct MHD_md5_ctx *ctx)
83 starting at BUFFER. 83 starting at BUFFER.
84 It is necessary that LEN is a multiple of 64!!! */ 84 It is necessary that LEN is a multiple of 64!!! */
85 extern void __MHD_md5_process_block (const void *buffer, size_t len, 85 extern void __MHD_md5_process_block (const void *buffer, size_t len,
86 struct MHD_md5_ctx *ctx) __THROW; 86 struct MHD_md5_ctx *ctx) __THROW;
87 87
88/* Starting with the result of former calls of this function (or the 88/* Starting with the result of former calls of this function (or the
89 initialization function update the context for the next LEN bytes 89 initialization function update the context for the next LEN bytes
90 starting at BUFFER. 90 starting at BUFFER.
91 It is NOT required that LEN is a multiple of 64. */ 91 It is NOT required that LEN is a multiple of 64. */
92 extern void __MHD_md5_process_bytes (const void *buffer, size_t len, 92 extern void __MHD_md5_process_bytes (const void *buffer, size_t len,
93 struct MHD_md5_ctx *ctx) __THROW; 93 struct MHD_md5_ctx *ctx) __THROW;
94 94
95/* Process the remaining bytes in the buffer and put result from CTX 95/* Process the remaining bytes in the buffer and put result from CTX
96 in first 16 bytes following RESBUF. The result is always in little 96 in first 16 bytes following RESBUF. The result is always in little
@@ -100,7 +100,7 @@ __MHD_md5_init_ctx (struct MHD_md5_ctx *ctx)
100 IMPORTANT: On some systems, RESBUF must be aligned to a 32-bit 100 IMPORTANT: On some systems, RESBUF must be aligned to a 32-bit
101 boundary. */ 101 boundary. */
102 extern void *__MHD_md5_finish_ctx (struct MHD_md5_ctx *ctx, 102 extern void *__MHD_md5_finish_ctx (struct MHD_md5_ctx *ctx,
103 void *resbuf) __THROW; 103 void *resbuf) __THROW;
104 104
105 105
106/* Put result from CTX in first 16 bytes following RESBUF. The result is 106/* Put result from CTX in first 16 bytes following RESBUF. The result is
@@ -110,7 +110,7 @@ __MHD_md5_init_ctx (struct MHD_md5_ctx *ctx)
110 IMPORTANT: On some systems, RESBUF must be aligned to a 32-bit 110 IMPORTANT: On some systems, RESBUF must be aligned to a 32-bit
111 boundary. */ 111 boundary. */
112 extern void *__MHD_md5_read_ctx (const struct MHD_md5_ctx *ctx, 112 extern void *__MHD_md5_read_ctx (const struct MHD_md5_ctx *ctx,
113 void *resbuf) __THROW; 113 void *resbuf) __THROW;
114 114
115 115
116/* Compute MD5 message digest for bytes read from STREAM. The 116/* Compute MD5 message digest for bytes read from STREAM. The
@@ -123,6 +123,6 @@ __MHD_md5_init_ctx (struct MHD_md5_ctx *ctx)
123 output yields to the wanted ASCII representation of the message 123 output yields to the wanted ASCII representation of the message
124 digest. */ 124 digest. */
125 extern void *__MHD_md5_buffer (const char *buffer, size_t len, 125 extern void *__MHD_md5_buffer (const char *buffer, size_t len,
126 void *resblock) __THROW; 126 void *resblock) __THROW;
127 127
128#endif /* md5.h */ 128#endif /* md5.h */