aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/rc6/rc6.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/rc6/rc6.h')
-rw-r--r--src/block/rc6/rc6.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/rc6/rc6.h b/src/block/rc6/rc6.h
index cb2800be7..f634ebcd9 100644
--- a/src/block/rc6/rc6.h
+++ b/src/block/rc6/rc6.h
@@ -23,8 +23,8 @@ class BOTAN_DLL RC6 : public BlockCipher
BlockCipher* clone() const { return new RC6; }
RC6() : BlockCipher(16, 1, 32) {}
private:
- void enc(const byte[], byte[]) const;
- void dec(const byte[], byte[]) const;
+ void encrypt_n(const byte in[], byte out[], u32bit blocks) const;
+ void decrypt_n(const byte in[], byte out[], u32bit blocks) const;
void key_schedule(const byte[], u32bit);
SecureBuffer<u32bit, 44> S;