summaryrefslogtreecommitdiffstats
path: root/old/botan/build/botan/emsa_raw.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/botan/build/botan/emsa_raw.h')
-rw-r--r--old/botan/build/botan/emsa_raw.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/old/botan/build/botan/emsa_raw.h b/old/botan/build/botan/emsa_raw.h
new file mode 100644
index 0000000..1b0ad51
--- /dev/null
+++ b/old/botan/build/botan/emsa_raw.h
@@ -0,0 +1,34 @@
+/*
+* EMSA-Raw
+* (C) 1999-2007 Jack Lloyd
+*
+* Distributed under the terms of the Botan license
+*/
+
+#ifndef BOTAN_EMSA_RAW_H__
+#define BOTAN_EMSA_RAW_H__
+
+#include <botan/emsa.h>
+
+namespace Botan {
+
+/*
+* EMSA-Raw
+*/
+class BOTAN_DLL EMSA_Raw : public EMSA
+ {
+ private:
+ void update(const byte[], u32bit);
+ SecureVector<byte> raw_data();
+
+ SecureVector<byte> encoding_of(const MemoryRegion<byte>&, u32bit,
+ RandomNumberGenerator&);
+ bool verify(const MemoryRegion<byte>&, const MemoryRegion<byte>&,
+ u32bit) throw();
+
+ SecureVector<byte> message;
+ };
+
+}
+
+#endif