aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/sha256.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/sha256.h')
-rw-r--r--src/microhttpd/sha256.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/sha256.h b/src/microhttpd/sha256.h
index 03700080..319277ff 100644
--- a/src/microhttpd/sha256.h
+++ b/src/microhttpd/sha256.h
@@ -64,7 +64,7 @@ struct sha256_ctx
64 * @param ctx_ must be a `struct sha256_ctx *` 64 * @param ctx_ must be a `struct sha256_ctx *`
65 */ 65 */
66void 66void
67sha256_init (void *ctx_); 67MHD_SHA256_init (void *ctx_);
68 68
69 69
70/** 70/**
@@ -75,7 +75,7 @@ sha256_init (void *ctx_);
75 * @param length number of bytes in @a data 75 * @param length number of bytes in @a data
76 */ 76 */
77void 77void
78sha256_update (void *ctx_, 78MHD_SHA256_update (void *ctx_,
79 const uint8_t *data, 79 const uint8_t *data,
80 size_t length); 80 size_t length);
81 81