aboutsummaryrefslogtreecommitdiffstats
path: root/modules/cipher/kasumi/kasumi.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-28 17:10:16 +0000
committerlloyd <[email protected]>2008-09-28 17:10:16 +0000
commit1680c75cd7f583f213493731c50eeb6dd6fea74a (patch)
tree3f7884ed4b4dedebd6113d53742844e72033c61f /modules/cipher/kasumi/kasumi.h
parentb677f899b4175dfb1e8910e219ade760cd716d95 (diff)
Modularize SSLv3 MAC and X9.19 MACs. Fix some feature macro inconsistencies.
Diffstat (limited to 'modules/cipher/kasumi/kasumi.h')
-rw-r--r--modules/cipher/kasumi/kasumi.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/modules/cipher/kasumi/kasumi.h b/modules/cipher/kasumi/kasumi.h
new file mode 100644
index 000000000..58888d909
--- /dev/null
+++ b/modules/cipher/kasumi/kasumi.h
@@ -0,0 +1,38 @@
+/*************************************************
+* KASUMI Header File *
+* (C) 1999-2007 Jack Lloyd *
+*************************************************/
+
+#ifndef BOTAN_KASUMI_H__
+#define BOTAN_KASUMI_H__
+
+#include <botan/base.h>
+
+namespace Botan {
+
+/*************************************************
+* KASUMI *
+*************************************************/
+class BOTAN_DLL KASUMI : public BlockCipher
+ {
+ public:
+ void clear() throw() { EK.clear(); }
+ std::string name() const { return "KASUMI"; }
+ BlockCipher* clone() const { return new KASUMI; }
+
+ KASUMI() : BlockCipher(8, 16) {}
+ private:
+ void enc(const byte[], byte[]) const;
+ void dec(const byte[], byte[]) const;
+ void key(const byte[], u32bit);
+
+ SecureBuffer<u16bit, 64> EK;
+ };
+
+extern const byte KASUMI_SBOX_S7[128];
+extern const u16bit KASUMI_SBOX_S9[512];
+
+
+}
+
+#endif