diff options
author | lloyd <[email protected]> | 2010-10-12 23:29:55 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-12 23:29:55 +0000 |
commit | 2af9ba577730f071eef44b3ba492c3bfad0a8ec6 (patch) | |
tree | 92a4c4e973756225d42bb99a99110b2669be7299 /src/hash/bmw/bmw_512.h | |
parent | 97e8d6086171772cd5e45bcf2f5b1ea1e38e6bf5 (diff) |
Use size_t for BufferedComputation::add_data
Diffstat (limited to 'src/hash/bmw/bmw_512.h')
-rw-r--r-- | src/hash/bmw/bmw_512.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash/bmw/bmw_512.h b/src/hash/bmw/bmw_512.h index b1eaa6874..aa527c142 100644 --- a/src/hash/bmw/bmw_512.h +++ b/src/hash/bmw/bmw_512.h @@ -25,7 +25,7 @@ class BOTAN_DLL BMW_512 : public MDx_HashFunction BMW_512() : MDx_HashFunction(64, 128, false, true), H(16), M(16), Q(32) { clear(); } private: - void compress_n(const byte input[], u32bit blocks); + void compress_n(const byte input[], size_t blocks); void copy_out(byte output[]); SecureVector<u64bit> H, M, Q; |