diff options
Diffstat (limited to 'src/block/rc6/rc6.h')
-rw-r--r-- | src/block/rc6/rc6.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/rc6/rc6.h b/src/block/rc6/rc6.h index 3517b4671..fd10070b8 100644 --- a/src/block/rc6/rc6.h +++ b/src/block/rc6/rc6.h @@ -23,7 +23,7 @@ class BOTAN_DLL RC6 : public BlockCipher private: void enc(const byte[], byte[]) const; void dec(const byte[], byte[]) const; - void key(const byte[], u32bit); + void key_schedule(const byte[], u32bit); SecureBuffer<u32bit, 44> S; }; |