blob: 8c170049dc29b32058587854be919c595f48ef9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/*************************************************
* Lookup Table Management Header File *
* (C) 1999-2007 Jack Lloyd *
*************************************************/
#ifndef BOTAN_LOOKUP_MANGEMENT_H__
#define BOTAN_LOOKUP_MANGEMENT_H__
#include <botan/base.h>
#include <botan/libstate.h>
#include <botan/mode_pad.h>
#include <botan/s2k.h>
namespace Botan {
/*************************************************
* Add an algorithm to the lookup table *
*************************************************/
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*);
}
#endif
|