aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md4
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-10-13 02:59:43 +0000
committerlloyd <[email protected]>2010-10-13 02:59:43 +0000
commit61ed0d4d90164675396feb7c7cecdd3bc5012f91 (patch)
tree31f48086086c78c6f0ce5fd533d819c8463be822 /src/hash/md4
parent3697dcff8b5e9765b41114281ce10e7ed3d3abb4 (diff)
Remove most uses of HASH_BLOCK_SIZE
Diffstat (limited to 'src/hash/md4')
-rw-r--r--src/hash/md4/md4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/md4/md4.cpp b/src/hash/md4/md4.cpp
index 2b24d10fd..9b9ebab36 100644
--- a/src/hash/md4/md4.cpp
+++ b/src/hash/md4/md4.cpp
@@ -85,7 +85,7 @@ void MD4::compress_n(const byte input[], size_t blocks)
C = (digest[2] += C);
D = (digest[3] += D);
- input += HASH_BLOCK_SIZE;
+ input += hash_block_size();
}
}