From d85e39b5da8fc60bb6055720a1ddeaa31951da02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20M=C3=B6ller?= Date: Wed, 10 Oct 2018 19:44:32 +0200 Subject: Move block buffer last in hash context structs. --- ripemd160.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ripemd160.h') diff --git a/ripemd160.h b/ripemd160.h index 4fee0c60..238c5ee7 100644 --- a/ripemd160.h +++ b/ripemd160.h @@ -59,8 +59,8 @@ struct ripemd160_ctx { uint32_t state[_RIPEMD160_DIGEST_LENGTH]; uint64_t count; /* 64-bit block count */ - uint8_t block[RIPEMD160_BLOCK_SIZE]; unsigned int index; + uint8_t block[RIPEMD160_BLOCK_SIZE]; }; void -- cgit v1.2.1