aboutsummaryrefslogtreecommitdiffstats
path: root/include/par_hash.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/par_hash.h
Initial checkin1.5.6
Diffstat (limited to 'include/par_hash.h')
-rw-r--r--include/par_hash.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/include/par_hash.h b/include/par_hash.h
new file mode 100644
index 000000000..702b5595b
--- /dev/null
+++ b/include/par_hash.h
@@ -0,0 +1,33 @@
+/*************************************************
+* Parallel Header File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#ifndef BOTAN_PAR_HASH_H__
+#define BOTAN_PAR_HASH_H__
+
+#include <botan/base.h>
+#include <vector>
+
+namespace Botan {
+
+/*************************************************
+* Parallel *
+*************************************************/
+class Parallel : public HashFunction
+ {
+ public:
+ void clear() throw();
+ std::string name() const;
+ HashFunction* clone() const;
+ Parallel(const std::vector<std::string>&);
+ ~Parallel();
+ private:
+ void add_data(const byte[], u32bit);
+ void final_result(byte[]);
+ std::vector<HashFunction*> hashes;
+ };
+
+}
+
+#endif