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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
|
/**
* Engine Base Class
* (C) 1999-2007 Jack Lloyd
*/
#include <botan/engine.h>
#include <botan/stl_util.h>
#include <botan/mode_pad.h>
namespace Botan {
namespace {
/*************************************************
* Algorithm Cache *
*************************************************/
template<typename T>
class Algorithm_Cache_Impl : public Engine::Algorithm_Cache<T>
{
public:
T* get(const std::string& name) const
{
Mutex_Holder lock(mutex);
return search_map(mappings, name);
}
void add(T* algo, const std::string& index_name = "") const
{
if(!algo)
return;
Mutex_Holder lock(mutex);
const std::string name =
(index_name != "" ? index_name : algo->name());
if(mappings.find(name) != mappings.end())
delete mappings[name];
mappings[name] = algo;
}
Algorithm_Cache_Impl(Mutex* m) : mutex(m) {}
~Algorithm_Cache_Impl()
{
typename std::map<std::string, T*>::iterator i = mappings.begin();
while(i != mappings.end())
{
delete i->second;
++i;
}
delete mutex;
}
private:
Mutex* mutex;
mutable std::map<std::string, T*> mappings;
};
}
/*************************************************
* Acquire a BlockCipher *
*************************************************/
const BlockCipher*
Engine::prototype_block_cipher(const SCAN_Name& request,
Algorithm_Factory& af) const
{
// This needs to respect provider settings
BlockCipher* algo = cache_of_bc->get(request.as_string());
if(algo)
return algo;
// cache miss: do full search
algo = find_block_cipher(request, af);
if(algo)
cache_of_bc->add(algo, request.as_string());
return algo;
}
/*************************************************
* Acquire a StreamCipher *
*************************************************/
const StreamCipher*
Engine::prototype_stream_cipher(const SCAN_Name& request,
Algorithm_Factory& af) const
{
// This needs to respect provider settings
StreamCipher* algo = cache_of_sc->get(request.as_string());
if(algo)
return algo;
// cache miss: do full search
algo = find_stream_cipher(request, af);
if(algo)
cache_of_sc->add(algo, request.as_string());
return algo;
}
/*************************************************
* Acquire a HashFunction *
*************************************************/
const HashFunction*
Engine::prototype_hash_function(const SCAN_Name& request,
Algorithm_Factory& af) const
{
// This needs to respect provider settings
HashFunction* algo = cache_of_hf->get(request.as_string());
if(algo)
return algo;
// cache miss: do full search
algo = find_hash(request, af);
if(algo)
cache_of_hf->add(algo, request.as_string());
return algo;
}
/*************************************************
* Acquire a MessageAuthenticationCode *
*************************************************/
const MessageAuthenticationCode*
Engine::prototype_mac(const SCAN_Name& request,
Algorithm_Factory& af) const
{
// This needs to respect provider settings
MessageAuthenticationCode* algo = cache_of_mac->get(request.as_string());
if(algo)
return algo;
// cache miss: do full search
algo = find_mac(request, af);
if(algo)
cache_of_mac->add(algo, request.as_string());
return algo;
}
/*************************************************
* Add a block cipher to the lookup table *
*************************************************/
void Engine::add_algorithm(BlockCipher* algo) const
{
cache_of_bc->add(algo);
}
/*************************************************
* Add a stream cipher to the lookup table *
*************************************************/
void Engine::add_algorithm(StreamCipher* algo) const
{
cache_of_sc->add(algo);
}
/*************************************************
* Add a hash function to the lookup table *
*************************************************/
void Engine::add_algorithm(HashFunction* algo) const
{
cache_of_hf->add(algo);
}
/*************************************************
* Add a MAC to the lookup table *
*************************************************/
void Engine::add_algorithm(MessageAuthenticationCode* algo) const
{
cache_of_mac->add(algo);
}
void Engine::initialize(Mutex_Factory& mf)
{
cache_of_bc = new Algorithm_Cache_Impl<BlockCipher>(mf.make());
cache_of_sc = new Algorithm_Cache_Impl<StreamCipher>(mf.make());
cache_of_hf = new Algorithm_Cache_Impl<HashFunction>(mf.make());
cache_of_mac =
new Algorithm_Cache_Impl<MessageAuthenticationCode>(mf.make());
}
Engine::Engine()
{
cache_of_bc = 0;
cache_of_sc = 0;
cache_of_hf = 0;
cache_of_mac = 0;
}
/*************************************************
* Destroy an Engine *
*************************************************/
Engine::~Engine()
{
delete cache_of_bc;
delete cache_of_sc;
delete cache_of_hf;
delete cache_of_mac;
}
}
|