diff options
author | lloyd <[email protected]> | 2012-05-25 16:08:01 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2012-05-25 16:08:01 +0000 |
commit | dde0df62b9453f84d2abbe32a7e44e87487f7e80 (patch) | |
tree | 1431b1e1d8838b50564bbac40745152ecacbedd5 /src/mac/cmac | |
parent | fb6737d579cd0c205be509b5dae96ca95bd2563e (diff) |
Resize key arrays in HMAC and SSL3_MAC when the key is set.
Plus a few minor cleanups.
Diffstat (limited to 'src/mac/cmac')
-rw-r--r-- | src/mac/cmac/cmac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mac/cmac/cmac.h b/src/mac/cmac/cmac.h index 3e75d3951..b398f2563 100644 --- a/src/mac/cmac/cmac.h +++ b/src/mac/cmac/cmac.h @@ -36,7 +36,7 @@ class BOTAN_DLL CMAC : public MessageAuthenticationCode * @param polynomial the byte value of the polynomial */ static secure_vector<byte> poly_double(const secure_vector<byte>& in, - byte polynomial); + byte polynomial); /** * @param cipher the underlying block cipher to use |