diff options
Diffstat (limited to 'src/microhttpd/test_sha512_256.c')
-rw-r--r-- | src/microhttpd/test_sha512_256.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/microhttpd/test_sha512_256.c b/src/microhttpd/test_sha512_256.c index e23ad256..81a505c0 100644 --- a/src/microhttpd/test_sha512_256.c +++ b/src/microhttpd/test_sha512_256.c @@ -1,6 +1,6 @@ /* This file is part of libmicrohttpd - Copyright (C) 2019-2022 Karlson2k (Evgeny Grin) + Copyright (C) 2019-2022 Evgeny Grin (Karlson2k) This test tool is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -446,10 +446,10 @@ test1_str (void) { int num_failed = 0; unsigned int i; + struct Sha512_256Ctx ctx; for (i = 0; i < units1_num; i++) { - struct Sha512_256Ctx ctx; uint8_t digest[SHA512_256_DIGEST_SIZE]; MHD_SHA512_256_init (&ctx); @@ -468,10 +468,10 @@ test1_bin (void) { int num_failed = 0; unsigned int i; + struct Sha512_256Ctx ctx; for (i = 0; i < units2_num; i++) { - struct Sha512_256Ctx ctx; uint8_t digest[SHA512_256_DIGEST_SIZE]; MHD_SHA512_256_init (&ctx); @@ -491,10 +491,10 @@ test2_str (void) { int num_failed = 0; unsigned int i; + struct Sha512_256Ctx ctx; for (i = 0; i < units1_num; i++) { - struct Sha512_256Ctx ctx; uint8_t digest[SHA512_256_DIGEST_SIZE]; size_t part_s = data_units1[i].str_l.len / 4; @@ -520,10 +520,10 @@ test2_bin (void) { int num_failed = 0; unsigned int i; + struct Sha512_256Ctx ctx; for (i = 0; i < units2_num; i++) { - struct Sha512_256Ctx ctx; uint8_t digest[SHA512_256_DIGEST_SIZE]; size_t part_s = data_units2[i].bin_l.len * 2 / 3; @@ -551,6 +551,7 @@ test_unaligned (void) unsigned int offset; uint8_t *buf; uint8_t *digest_buf; + struct Sha512_256Ctx ctx; const struct data_unit2 *const tdata = data_units2 + DATA_POS; @@ -561,7 +562,6 @@ test_unaligned (void) for (offset = MAX_OFFSET; offset >= 1; --offset) { - struct Sha512_256Ctx ctx; uint8_t *unaligned_digest; uint8_t *unaligned_buf; |