From 0b1046d275c86f75e6c59720f655af0ac699783c Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Tue, 8 Jan 2019 21:11:49 +0100 Subject: [PATCH] Remove additional space chars from SHA256 module --- modules/module_01400.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/modules/module_01400.c b/modules/module_01400.c index ad5a7989f..a9184df84 100644 --- a/modules/module_01400.c +++ b/modules/module_01400.c @@ -108,14 +108,14 @@ int module_hash_encode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE u8 *out_buf = (u8 *) line_buf; - u32_to_hex (tmp[ 0], out_buf + 0); - u32_to_hex (tmp[ 1], out_buf + 8); - u32_to_hex (tmp[ 2], out_buf + 16); - u32_to_hex (tmp[ 3], out_buf + 24); - u32_to_hex (tmp[ 4], out_buf + 32); - u32_to_hex (tmp[ 5], out_buf + 40); - u32_to_hex (tmp[ 6], out_buf + 48); - u32_to_hex (tmp[ 7], out_buf + 56); + u32_to_hex (tmp[ 0], out_buf + 0); + u32_to_hex (tmp[ 1], out_buf + 8); + u32_to_hex (tmp[ 2], out_buf + 16); + u32_to_hex (tmp[ 3], out_buf + 24); + u32_to_hex (tmp[ 4], out_buf + 32); + u32_to_hex (tmp[ 5], out_buf + 40); + u32_to_hex (tmp[ 6], out_buf + 48); + u32_to_hex (tmp[ 7], out_buf + 56); const int out_len = 64;