summaryrefslogtreecommitdiffstats
path: root/old/botan/build/botan/kasumi.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/botan/build/botan/kasumi.h')
-rw-r--r--old/botan/build/botan/kasumi.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/old/botan/build/botan/kasumi.h b/old/botan/build/botan/kasumi.h
new file mode 100644
index 0000000..df49fa9
--- /dev/null
+++ b/old/botan/build/botan/kasumi.h
@@ -0,0 +1,36 @@
+/*
+* KASUMI
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_KASUMI_H__
+#define BOTAN_KASUMI_H__
+
+#include <botan/block_cipher.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_schedule(const byte[], u32bit);
+
+ SecureBuffer<u16bit, 64> EK;
+ };
+
+}
+
+#endif