aboutsummaryrefslogtreecommitdiffstats
path: root/include/eme.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/eme.h
Initial checkin1.5.6
Diffstat (limited to 'include/eme.h')
-rw-r--r--include/eme.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/include/eme.h b/include/eme.h
new file mode 100644
index 000000000..a82f49d79
--- /dev/null
+++ b/include/eme.h
@@ -0,0 +1,45 @@
+/*************************************************
+* EME Header File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#ifndef BOTAN_EME_H__
+#define BOTAN_EME_H__
+
+#include <botan/pk_util.h>
+
+namespace Botan {
+
+/*************************************************
+* EME1 *
+*************************************************/
+class EME1 : public EME
+ {
+ public:
+ u32bit maximum_input_size(u32bit) const;
+
+ EME1(const std::string&, const std::string&, const std::string& = "");
+ ~EME1() { delete mgf; }
+ private:
+ SecureVector<byte> pad(const byte[], u32bit, u32bit) const;
+ SecureVector<byte> unpad(const byte[], u32bit, u32bit) const;
+ const u32bit HASH_LENGTH;
+ SecureVector<byte> Phash;
+ MGF* mgf;
+ };
+
+/*************************************************
+* EME_PKCS1v15 *
+*************************************************/
+class EME_PKCS1v15 : public EME
+ {
+ public:
+ u32bit maximum_input_size(u32bit) const;
+ private:
+ SecureVector<byte> pad(const byte[], u32bit, u32bit) const;
+ SecureVector<byte> unpad(const byte[], u32bit, u32bit) const;
+ };
+
+}
+
+#endif