blob: 44ae777270c51c6d8f4151a7f51dceb03a32f763 (
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
29
30
31
32
|
/*************************************************
* Lookup Table Management Header File *
* (C) 1999-2007 Jack Lloyd *
*************************************************/
#ifndef BOTAN_LOOKUP_MANGEMENT_H__
#define BOTAN_LOOKUP_MANGEMENT_H__
#include <botan/libstate.h>
#include <botan/block_cipher.h>
#include <botan/stream_cipher.h>
#include <botan/hash.h>
#include <botan/mac.h>
#include <botan/s2k.h>
#include <botan/mode_pad.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
|