From 593d1a3edcf3ece6fb25d6ea7f582b0fbd3d7ae8 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Tue, 25 Jun 2013 05:48:35 +0200 Subject: Update RIPEMD160 implementation in Windows Bootloaded to benefit from the compiler 32-bit integer --- src/Crypto/Rmd160.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Crypto/Rmd160.h') diff --git a/src/Crypto/Rmd160.h b/src/Crypto/Rmd160.h index 4bdd794a..4dfa38f1 100644 --- a/src/Crypto/Rmd160.h +++ b/src/Crypto/Rmd160.h @@ -16,7 +16,7 @@ typedef struct RMD160Context #ifndef TC_WINDOWS_BOOT uint64 count; #else - uint16 count; + uint32 count; #endif unsigned char buffer[RIPEMD160_BLOCK_LENGTH]; } RMD160_CTX; -- cgit v1.2.3