aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/square/square.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/square/square.h')
-rw-r--r--src/block/square/square.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/square/square.h b/src/block/square/square.h
index 94a1fc370..0de4c20bd 100644
--- a/src/block/square/square.h
+++ b/src/block/square/square.h
@@ -23,8 +23,8 @@ class BOTAN_DLL Square : public BlockCipher
BlockCipher* clone() const { return new Square; }
Square() : BlockCipher(16, 16) {}
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);
static void transform(u32bit[4]);