diff options
Diffstat (limited to 'src/hash/md5')
-rw-r--r-- | src/hash/md5/md5.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/md5/md5.cpp b/src/hash/md5/md5.cpp index 9a5f95ca8..948f4e73b 100644 --- a/src/hash/md5/md5.cpp +++ b/src/hash/md5/md5.cpp @@ -107,7 +107,7 @@ void MD5::compress_n(const byte input[], size_t blocks) C = (digest[2] += C); D = (digest[3] += D); - input += HASH_BLOCK_SIZE; + input += hash_block_size(); } } |