aboutsummaryrefslogtreecommitdiffstats
path: root/src/mac/cmac/cmac.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mac/cmac/cmac.h')
-rw-r--r--src/mac/cmac/cmac.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mac/cmac/cmac.h b/src/mac/cmac/cmac.h
index b5f3eec1a..5655e1eea 100644
--- a/src/mac/cmac/cmac.h
+++ b/src/mac/cmac/cmac.h
@@ -37,13 +37,13 @@ class BOTAN_DLL CMAC : public MessageAuthenticationCode
CMAC(BlockCipher* cipher);
~CMAC();
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<byte> buffer, state, B, P;
- u32bit position;
+ size_t position;
byte polynomial;
};