From 2af9ba577730f071eef44b3ba492c3bfad0a8ec6 Mon Sep 17 00:00:00 2001 From: lloyd Date: Tue, 12 Oct 2010 23:29:55 +0000 Subject: Use size_t for BufferedComputation::add_data --- src/mac/cbc_mac/cbc_mac.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mac/cbc_mac/cbc_mac.h') diff --git a/src/mac/cbc_mac/cbc_mac.h b/src/mac/cbc_mac/cbc_mac.h index 772abd38f..69fef9c57 100644 --- a/src/mac/cbc_mac/cbc_mac.h +++ b/src/mac/cbc_mac/cbc_mac.h @@ -29,13 +29,13 @@ class BOTAN_DLL CBC_MAC : public MessageAuthenticationCode CBC_MAC(BlockCipher* cipher); ~CBC_MAC(); private: - void add_data(const byte[], u32bit); + void add_data(const byte[], size_t); void final_result(byte[]); void key_schedule(const byte[], u32bit); BlockCipher* e; SecureVector state; - u32bit position; + size_t position; }; } -- cgit v1.2.3