diff options
Diffstat (limited to 'src/core/look_add.h')
-rw-r--r-- | src/core/look_add.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/core/look_add.h b/src/core/look_add.h index 4185cbc0a..8c170049d 100644 --- a/src/core/look_add.h +++ b/src/core/look_add.h @@ -7,6 +7,7 @@ #define BOTAN_LOOKUP_MANGEMENT_H__ #include <botan/base.h> +#include <botan/libstate.h> #include <botan/mode_pad.h> #include <botan/s2k.h> @@ -15,12 +16,12 @@ namespace Botan { /************************************************* * Add an algorithm to the lookup table * *************************************************/ -BOTAN_DLL void add_algorithm(BlockCipher*); -BOTAN_DLL void add_algorithm(StreamCipher*); -BOTAN_DLL void add_algorithm(HashFunction*); -BOTAN_DLL void add_algorithm(MessageAuthenticationCode*); -BOTAN_DLL void add_algorithm(S2K*); -BOTAN_DLL void add_algorithm(BlockCipherModePaddingMethod*); +BOTAN_DLL void add_algorithm(Library_State&, BlockCipher*); +BOTAN_DLL void add_algorithm(Library_State&, StreamCipher*); +BOTAN_DLL void add_algorithm(Library_State&, HashFunction*); +BOTAN_DLL void add_algorithm(Library_State&, MessageAuthenticationCode*); +BOTAN_DLL void add_algorithm(Library_State&, S2K*); +BOTAN_DLL void add_algorithm(Library_State&, BlockCipherModePaddingMethod*); } |