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 908bbda2..d06b70b2 100644
--- a/src/microhttpd/sha256.c
+++ b/src/microhttpd/sha256.c
@@ -318,8 +318,8 @@ MHD_SHA256_update (void *ctx_,
318 * @param[out] digest set to the hash, must be #SHA256_DIGEST_SIZE bytes 318 * @param[out] digest set to the hash, must be #SHA256_DIGEST_SIZE bytes
319 */ 319 */
320void 320void
321sha256_finish (void *ctx_, 321MHD_SHA256_finish (void *ctx_,
322 uint8_t digest[SHA256_DIGEST_SIZE]) 322 uint8_t digest[SHA256_DIGEST_SIZE])
323{ 323{
324 struct sha256_ctx *const ctx = ctx_; 324 struct sha256_ctx *const ctx = ctx_;
325 uint64_t num_bits; /**< Number of processed bits */ 325 uint64_t num_bits; /**< Number of processed bits */