diff options
author | lloyd <[email protected]> | 2010-06-15 23:36:36 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-06-15 23:36:36 +0000 |
commit | 696672d6a5d971386d7db293553228687ab6b2d6 (patch) | |
tree | 5431fe8130ba63523684909876312d2e9dbf9601 /src/block/idea | |
parent | 49c18ab9131cd1a36e5e90bbfc18ef3f33361d50 (diff) |
Don't allow access to key_schedule, just the members
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; }; |