diff options
author | lloyd <[email protected]> | 2010-10-13 02:59:43 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-13 02:59:43 +0000 |
commit | 61ed0d4d90164675396feb7c7cecdd3bc5012f91 (patch) | |
tree | 31f48086086c78c6f0ce5fd533d819c8463be822 /src/hash/tiger | |
parent | 3697dcff8b5e9765b41114281ce10e7ed3d3abb4 (diff) |
Remove most uses of HASH_BLOCK_SIZE
Diffstat (limited to 'src/hash/tiger')
-rw-r--r-- | src/hash/tiger/tiger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/tiger/tiger.cpp b/src/hash/tiger/tiger.cpp index 67baf8d19..7f95267aa 100644 --- a/src/hash/tiger/tiger.cpp +++ b/src/hash/tiger/tiger.cpp @@ -66,7 +66,7 @@ void Tiger::compress_n(const byte input[], size_t blocks) B = digest[1] = B - digest[1]; C = (digest[2] += C); - input += HASH_BLOCK_SIZE; + input += hash_block_size(); } } |