aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/rc5/rc5.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/rc5/rc5.h')
-rw-r--r--src/block/rc5/rc5.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/rc5/rc5.h b/src/block/rc5/rc5.h
index bb91c3e68..6fbeb7c51 100644
--- a/src/block/rc5/rc5.h
+++ b/src/block/rc5/rc5.h
@@ -23,7 +23,7 @@ class BOTAN_DLL RC5 : 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);
SecureVector<u32bit> S;
const u32bit ROUNDS;
};