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/hmac/hmac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mac/hmac/hmac.h') diff --git a/src/mac/hmac/hmac.h b/src/mac/hmac/hmac.h index 43a5d22a4..3941baef9 100644 --- a/src/mac/hmac/hmac.h +++ b/src/mac/hmac/hmac.h @@ -29,7 +29,7 @@ class BOTAN_DLL HMAC : public MessageAuthenticationCode HMAC(HashFunction* hash); ~HMAC() { delete hash; } private: - void add_data(const byte[], u32bit); + void add_data(const byte[], size_t); void final_result(byte[]); void key_schedule(const byte[], u32bit); HashFunction* hash; -- cgit v1.2.3