summaryrefslogtreecommitdiffstats
path: root/botan/build/botan/desx.h
diff options
context:
space:
mode:
Diffstat (limited to 'botan/build/botan/desx.h')
-rw-r--r--botan/build/botan/desx.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/botan/build/botan/desx.h b/botan/build/botan/desx.h
new file mode 100644
index 0000000..49ecc24
--- /dev/null
+++ b/botan/build/botan/desx.h
@@ -0,0 +1,35 @@
+/*
+* DESX
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_DESX_H__
+#define BOTAN_DESX_H__
+
+#include <botan/des.h>
+
+namespace Botan {
+
+/*
+* DESX
+*/
+class BOTAN_DLL DESX : public BlockCipher
+ {
+ public:
+ void clear() throw() { des.clear(); K1.clear(); K2.clear(); }
+ std::string name() const { return "DESX"; }
+ BlockCipher* clone() const { return new DESX; }
+ DESX() : BlockCipher(8, 24) {}
+ private:
+ void enc(const byte[], byte[]) const;
+ void dec(const byte[], byte[]) const;
+ void key_schedule(const byte[], u32bit);
+ SecureBuffer<byte, 8> K1, K2;
+ DES des;
+ };
+
+}
+
+#endif