aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/lion/lion.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/lion/lion.h')
-rw-r--r--src/block/lion/lion.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/lion/lion.h b/src/block/lion/lion.h
index 5bc4e72c0..d9f933846 100644
--- a/src/block/lion/lion.h
+++ b/src/block/lion/lion.h
@@ -27,8 +27,8 @@ class BOTAN_DLL Lion : public BlockCipher
Lion(HashFunction*, StreamCipher*, u32bit);
~Lion() { delete hash; delete cipher; }
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);
const u32bit LEFT_SIZE, RIGHT_SIZE;