diff options
Diffstat (limited to 'src/block/idea')
-rw-r--r-- | src/block/idea/idea.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/block/idea/idea.h b/src/block/idea/idea.h index be1417a36..e9ccf366d 100644 --- a/src/block/idea/idea.h +++ b/src/block/idea/idea.h @@ -26,8 +26,10 @@ class BOTAN_DLL IDEA : public BlockCipher BlockCipher* clone() const { return new IDEA; } IDEA() : BlockCipher(8, 16) {} - protected: + private: void key_schedule(const byte[], u32bit); + + protected: // for IDEA_SSE2 SecureVector<u16bit, 52> EK, DK; }; |