aboutsummaryrefslogtreecommitdiffstats
path: root/include/ecb.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-05-18 18:33:19 +0000
committerlloyd <[email protected]>2006-05-18 18:33:19 +0000
commita2c99d3270eb73ef2db5704fc54356c6b75096f8 (patch)
treead3d6c4fcc8dd0f403f8105598943616246fe172 /include/ecb.h
Initial checkin1.5.6
Diffstat (limited to 'include/ecb.h')
-rw-r--r--include/ecb.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/include/ecb.h b/include/ecb.h
new file mode 100644
index 000000000..10483b3a8
--- /dev/null
+++ b/include/ecb.h
@@ -0,0 +1,57 @@
+/*************************************************
+* ECB Mode Header File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#ifndef BOTAN_ECB_H__
+#define BOTAN_ECB_H__
+
+#include <botan/modebase.h>
+#include <botan/mode_pad.h>
+
+namespace Botan {
+
+/*************************************************
+* ECB *
+*************************************************/
+class ECB : public BlockCipherMode
+ {
+ protected:
+ ECB(const std::string&, const std::string&);
+ std::string name() const;
+ const BlockCipherModePaddingMethod* padder;
+ private:
+ bool valid_iv_size(u32bit) const;
+ };
+
+/*************************************************
+* ECB Encryption *
+*************************************************/
+class ECB_Encryption : public ECB
+ {
+ public:
+ ECB_Encryption(const std::string&, const std::string&);
+ ECB_Encryption(const std::string&, const std::string&,
+ const SymmetricKey&);
+ private:
+ void write(const byte[], u32bit);
+ void end_msg();
+ };
+
+/*************************************************
+* ECB Decryption *
+*************************************************/
+class ECB_Decryption : public ECB
+ {
+ public:
+ ECB_Decryption(const std::string&, const std::string&);
+ ECB_Decryption(const std::string&, const std::string&,
+ const SymmetricKey&);
+ private:
+ void write(const byte[], u32bit);
+ void end_msg();
+ };
+
+}
+
+#endif