diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2013-06-25 05:48:35 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2014-11-08 23:18:44 +0100 |
commit | 593d1a3edcf3ece6fb25d6ea7f582b0fbd3d7ae8 (patch) | |
tree | 7d87b8c9656d31a02aa7bac8de9b180421720844 /src/Crypto/Rmd160.h | |
parent | 0f70b56942a305bf0f7954c0e06b601517989156 (diff) | |
download | VeraCrypt-593d1a3edcf3ece6fb25d6ea7f582b0fbd3d7ae8.tar.gz VeraCrypt-593d1a3edcf3ece6fb25d6ea7f582b0fbd3d7ae8.zip |
Update RIPEMD160 implementation in Windows Bootloaded to benefit from the compiler 32-bit integer
Diffstat (limited to 'src/Crypto/Rmd160.h')
-rw-r--r-- | src/Crypto/Rmd160.h | 2 |
1 files changed, 1 insertions, 1 deletions
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;
|