From 23590c05c652efccdfb7e837a048adbecab5b145 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 16 May 2016 16:59:05 +0200 Subject: [PATCH] rename index to idx in sha3 to avoid collision with index function in strings.h --- sha3.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sha3.c b/sha3.c index de6b580668..9f23b89d35 100644 --- a/sha3.c +++ b/sha3.c @@ -267,16 +267,16 @@ static void sha3_process_block(uint64_t hash[25], const uint64_t *block, size_t */ void sha3_Update(SHA3_CTX *ctx, const unsigned char *msg, size_t size) { - size_t index = (size_t)ctx->rest; + size_t idx = (size_t)ctx->rest; size_t block_size = (size_t)ctx->block_size; if (ctx->rest & SHA3_FINALIZED) return; /* too late for additional input */ ctx->rest = (unsigned)((ctx->rest + size) % block_size); /* fill partial block */ - if (index) { - size_t left = block_size - index; - memcpy((char*)ctx->message + index, msg, (size < left ? size : left)); + if (idx) { + size_t left = block_size - idx; + memcpy((char*)ctx->message + idx, msg, (size < left ? size : left)); if (size < left) return; /* process partial block */