aboutsummaryrefslogtreecommitdiffstats
path: root/src/mac
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-10-13 15:14:07 +0000
committerlloyd <[email protected]>2010-10-13 15:14:07 +0000
commite846f62c1c9a0e1f6aed562c462561cc91406501 (patch)
tree413dce73612b225c76228782052d51c0945f720c /src/mac
parent30a71cfa8d2d4c78e3a2b9f4c394b652f457e1f2 (diff)
More size_t. Document changes
Diffstat (limited to 'src/mac')
-rw-r--r--src/mac/mac.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mac/mac.h b/src/mac/mac.h
index 1350c7d7a..b788e06c8 100644
--- a/src/mac/mac.h
+++ b/src/mac/mac.h
@@ -51,10 +51,10 @@ class BOTAN_DLL MessageAuthenticationCode : public BufferedComputation,
* @param key_max the maximum key size
* @param key_mod the modulo restriction on the key size
*/
- MessageAuthenticationCode(u32bit mac_len,
- u32bit key_min,
- u32bit key_max = 0,
- u32bit key_mod = 1) :
+ MessageAuthenticationCode(size_t mac_len,
+ size_t key_min,
+ size_t key_max = 0,
+ size_t key_mod = 1) :
BufferedComputation(mac_len),
SymmetricAlgorithm(key_min, key_max, key_mod) {}