aboutsummaryrefslogtreecommitdiffstats
path: root/src/algo_factory/algo_factory.cpp
blob: e69b85b15b23857162de6d0fe630a6ff288bbc01 (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
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
/*
Algorithm Factory
(C) 2008 Jack Lloyd
*/

#include <botan/algo_factory.h>
#include <botan/stl_util.h>
#include <botan/engine.h>
#include <botan/exceptn.h>

#include <botan/block_cipher.h>
#include <botan/stream_cipher.h>
#include <botan/hash.h>
#include <botan/mac.h>

#include <algorithm>

namespace Botan {

Algorithm_Factory::Algorithm_Factory(Mutex_Factory& mf) :
   block_cipher_cache(mf.make()),
   stream_cipher_cache(mf.make()),
   hash_cache(mf.make()),
   mac_cache(mf.make())
   {

   }

/**
* Delete all engines
*/
Algorithm_Factory::~Algorithm_Factory()
   {
   std::for_each(engines.begin(), engines.end(), del_fun<Engine>());
   engines.clear();
   }

/**
* Add a new engine to the list
*/
void Algorithm_Factory::add_engine(Engine* engine)
   {
   engines.insert(engines.begin(), engine);
   }

/*************************************************
* Get an engine out of the list                  *
*************************************************/
Engine* Algorithm_Factory::get_engine_n(u32bit n) const
   {
   if(n >= engines.size())
      return 0;
   return engines[n];
   }

/**
* Return the possible providers of a request
*/
std::vector<std::string>
Algorithm_Factory::providers_of(const std::string& algo_name)
   {
   if(prototype_block_cipher(algo_name))
      return block_cipher_cache.providers_of(algo_name);

   if(prototype_stream_cipher(algo_name))
      return stream_cipher_cache.providers_of(algo_name);

   if(prototype_hash_function(algo_name))
      return hash_cache.providers_of(algo_name);

   if(prototype_mac(algo_name))
      return mac_cache.providers_of(algo_name);

   return std::vector<std::string>();
   }

/**
* Return the prototypical block cipher cooresponding to this request
*/
const BlockCipher*
Algorithm_Factory::prototype_block_cipher(const SCAN_Name& request)
   {
   if(const BlockCipher* cache_hit = block_cipher_cache.get(request))
      return cache_hit;

   for(u32bit i = 0; i != engines.size(); ++i)
      {
      const std::string provider = engines[i]->provider_name();

      SCAN_Name request_i(request.as_string(), provider);

      if(BlockCipher* impl = engines[i]->find_block_cipher(request_i, *this))
         block_cipher_cache.add(impl, request.as_string(), provider);
      }

   return block_cipher_cache.get(request);
   }

/**
* Return a new block cipher cooresponding to this request
*/
BlockCipher* Algorithm_Factory::make_block_cipher(const SCAN_Name& request)
   {
   if(const BlockCipher* prototype = prototype_block_cipher(request))
      return prototype->clone();
   throw Algorithm_Not_Found(request.as_string());
   }

/**
* Add a new block cipher
*/
void Algorithm_Factory::add_block_cipher(BlockCipher* block_cipher,
                                         const std::string& provider)
   {
   block_cipher_cache.add(block_cipher, block_cipher->name(), provider);
   }

/**
* Return the prototypical stream cipher cooresponding to this request
*/
const StreamCipher*
Algorithm_Factory::prototype_stream_cipher(const SCAN_Name& request)
   {
   if(const StreamCipher* cache_hit = stream_cipher_cache.get(request))
      return cache_hit;

   for(u32bit i = 0; i != engines.size(); ++i)
      {
      const std::string provider = engines[i]->provider_name();

      SCAN_Name request_i(request.as_string(), provider);

      if(StreamCipher* impl = engines[i]->find_stream_cipher(request_i, *this))
         stream_cipher_cache.add(impl, request.as_string(), provider);
      }

   return stream_cipher_cache.get(request);
   }

/**
* Return a new stream cipher cooresponding to this request
*/
StreamCipher* Algorithm_Factory::make_stream_cipher(const SCAN_Name& request)
   {
   if(const StreamCipher* prototype = prototype_stream_cipher(request))
      return prototype->clone();
   throw Algorithm_Not_Found(request.as_string());
   }

/**
* Add a new stream cipher
*/
void Algorithm_Factory::add_stream_cipher(StreamCipher* stream_cipher,
                                         const std::string& provider)
   {
   stream_cipher_cache.add(stream_cipher, stream_cipher->name(), provider);
   }

/**
* Return the prototypical object cooresponding to this request (if found)
*/
const HashFunction*
Algorithm_Factory::prototype_hash_function(const SCAN_Name& request)
   {
   if(const HashFunction* cache_hit = hash_cache.get(request))
      return cache_hit;

   for(u32bit i = 0; i != engines.size(); ++i)
      {
      const std::string provider = engines[i]->provider_name();

      SCAN_Name request_i(request.as_string(), provider);

      if(HashFunction* impl = engines[i]->find_hash(request_i, *this))
         hash_cache.add(impl, request.as_string(), provider);
      }

   return hash_cache.get(request);
   }

/**
* Return a new object cooresponding to this request
*/
HashFunction* Algorithm_Factory::make_hash_function(const SCAN_Name& request)
   {
   if(const HashFunction* prototype = prototype_hash_function(request))
      return prototype->clone();
   throw Algorithm_Not_Found(request.as_string());
   }

/**
* Add a new hash
*/
void Algorithm_Factory::add_hash_function(HashFunction* hash,
                                          const std::string& provider)
   {
   hash_cache.add(hash, hash->name(), provider);
   }

/**
* Return the prototypical object cooresponding to this request
*/
const MessageAuthenticationCode*
Algorithm_Factory::prototype_mac(const SCAN_Name& request)
   {
   if(const MessageAuthenticationCode* cache_hit = mac_cache.get(request))
      return cache_hit;

   for(u32bit i = 0; i != engines.size(); ++i)
      {
      const std::string provider = engines[i]->provider_name();

      SCAN_Name request_i(request.as_string(), provider);

      if(MessageAuthenticationCode* impl =
            engines[i]->find_mac(request_i, *this))
         mac_cache.add(impl, request.as_string(), provider);
      }

   return mac_cache.get(request);
   }

/**
* Return a new object cooresponding to this request
*/
MessageAuthenticationCode*
Algorithm_Factory::make_mac(const SCAN_Name& request)
   {
   if(const MessageAuthenticationCode* prototype = prototype_mac(request))
      return prototype->clone();
   throw Algorithm_Not_Found(request.as_string());
   }

/**
* Add a new mac
*/
void Algorithm_Factory::add_mac(MessageAuthenticationCode* mac,
                                const std::string& provider)
   {
   mac_cache.add(mac, mac->name(), provider);
   }

}