blob: 1e06472fed434159d1814c395360e9093703c905 (
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
|
/*************************************************
* 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*);
}
#endif
|