aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/md4_ia32/md4_ia32.cpp
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_ia32/md4_ia32.cpp
parent3697dcff8b5e9765b41114281ce10e7ed3d3abb4 (diff)
Remove most uses of HASH_BLOCK_SIZE
Diffstat (limited to 'src/hash/md4_ia32/md4_ia32.cpp')
-rw-r--r--src/hash/md4_ia32/md4_ia32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/md4_ia32/md4_ia32.cpp b/src/hash/md4_ia32/md4_ia32.cpp
index 8983995fc..1e3cd64c3 100644
--- a/src/hash/md4_ia32/md4_ia32.cpp
+++ b/src/hash/md4_ia32/md4_ia32.cpp
@@ -19,7 +19,7 @@ void MD4_IA32::compress_n(const byte input[], size_t blocks)
for(size_t i = 0; i != blocks; ++i)
{
botan_md4_ia32_compress(digest, input, M);
- input += HASH_BLOCK_SIZE;
+ input += hash_block_size();
}
}