aboutsummaryrefslogtreecommitdiffstats
path: root/include/look_add.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/look_add.h')
-rw-r--r--include/look_add.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/look_add.h b/include/look_add.h
new file mode 100644
index 000000000..e6cc265b0
--- /dev/null
+++ b/include/look_add.h
@@ -0,0 +1,32 @@
+/*************************************************
+* Lookup Table Management Header File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#ifndef BOTAN_LOOKUP_MANGEMENT_H__
+#define BOTAN_LOOKUP_MANGEMENT_H__
+
+#include <botan/base.h>
+#include <botan/mode_pad.h>
+#include <botan/s2k.h>
+
+namespace Botan {
+
+/*************************************************
+* Add an algorithm to the lookup table *
+*************************************************/
+void add_algorithm(BlockCipher*);
+void add_algorithm(StreamCipher*);
+void add_algorithm(HashFunction*);
+void add_algorithm(MessageAuthenticationCode*);
+void add_algorithm(S2K*);
+void add_algorithm(BlockCipherModePaddingMethod*);
+
+/*************************************************
+* Add an alias for an algorithm *
+*************************************************/
+void add_alias(const std::string&, const std::string&);
+
+}
+
+#endif