aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/sha256.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/sha256.c')
-rw-r--r--src/microhttpd/sha256.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/sha256.c b/src/microhttpd/sha256.c
index 244b674a..b47a773b 100644
--- a/src/microhttpd/sha256.c
+++ b/src/microhttpd/sha256.c
@@ -42,7 +42,7 @@
42 * @param ctx_ must be a `struct sha256_ctx *` 42 * @param ctx_ must be a `struct sha256_ctx *`
43 */ 43 */
44void 44void
45sha256_init (void *ctx_) 45MHD_SHA256_init (void *ctx_)
46{ 46{
47 struct sha256_ctx *const ctx = ctx_; 47 struct sha256_ctx *const ctx = ctx_;
48 /* Initial hash values, see FIPS PUB 180-4 paragraph 5.3.3 */ 48 /* Initial hash values, see FIPS PUB 180-4 paragraph 5.3.3 */
@@ -236,7 +236,7 @@ sha256_transform (uint32_t H[_SHA256_DIGEST_LENGTH],
236 * @param length number of bytes in @a data 236 * @param length number of bytes in @a data
237 */ 237 */
238void 238void
239sha256_update (void *ctx_, 239MHD_SHA256_update (void *ctx_,
240 const uint8_t *data, 240 const uint8_t *data,
241 size_t length) 241 size_t length)
242{ 242{