aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/seed/seed.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/seed/seed.h')
-rw-r--r--src/block/seed/seed.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/block/seed/seed.h b/src/block/seed/seed.h
index 54c25d580..0c9c2c8af 100644
--- a/src/block/seed/seed.h
+++ b/src/block/seed/seed.h
@@ -23,8 +23,8 @@ class BOTAN_DLL SEED : public BlockCipher
BlockCipher* clone() const { return new SEED; }
SEED() : 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);
class G_FUNC