diff options
Diffstat (limited to 'src/mac/cmac/cmac.h')
-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 66eb46a69..9f745ee22 100644 --- a/src/mac/cmac/cmac.h +++ b/src/mac/cmac/cmac.h @@ -29,7 +29,7 @@ class BOTAN_DLL CMAC : public MessageAuthenticationCode private: void add_data(const byte[], u32bit); void final_result(byte[]); - void key(const byte[], u32bit); + void key_schedule(const byte[], u32bit); BlockCipher* e; SecureVector<byte> buffer, state, B, P; |