2 * Copyright (C) 2008 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * @defgroup crypto_factory crypto_factory
21 #ifndef CRYPTO_FACTORY_H_
22 #define CRYPTO_FACTORY_H_
24 typedef struct crypto_factory_t crypto_factory_t
;
27 #include <collections/enumerator.h>
28 #include <crypto/crypters/crypter.h>
29 #include <crypto/aead.h>
30 #include <crypto/signers/signer.h>
31 #include <crypto/hashers/hasher.h>
32 #include <crypto/prfs/prf.h>
33 #include <crypto/rngs/rng.h>
34 #include <crypto/nonce_gen.h>
35 #include <crypto/diffie_hellman.h>
36 #include <crypto/transform.h>
38 #define CRYPTO_MAX_ALG_LINE 120 /* characters */
41 * Constructor function for crypters
43 typedef crypter_t
* (*crypter_constructor_t
)(encryption_algorithm_t algo
,
46 * Constructor function for aead transforms
48 typedef aead_t
* (*aead_constructor_t
)(encryption_algorithm_t algo
,
51 * Constructor function for signers
53 typedef signer_t
* (*signer_constructor_t
)(integrity_algorithm_t algo
);
56 * Constructor function for hashers
58 typedef hasher_t
* (*hasher_constructor_t
)(hash_algorithm_t algo
);
61 * Constructor function for pseudo random functions
63 typedef prf_t
* (*prf_constructor_t
)(pseudo_random_function_t algo
);
66 * Constructor function for source of randomness
68 typedef rng_t
* (*rng_constructor_t
)(rng_quality_t quality
);
71 * Constructor function for nonce generators
73 typedef nonce_gen_t
* (*nonce_gen_constructor_t
)();
76 * Constructor function for diffie hellman
78 * The DH constructor accepts additional arguments for:
79 * - MODP_CUSTOM: chunk_t generator, chunk_t prime
81 typedef diffie_hellman_t
* (*dh_constructor_t
)(diffie_hellman_group_t group
, ...);
84 * Handles crypto modules and creates instances.
86 struct crypto_factory_t
{
89 * Create a crypter instance.
91 * @param algo encryption algorithm
92 * @param key_size length of the key in bytes
93 * @return crypter_t instance, NULL if not supported
95 crypter_t
* (*create_crypter
)(crypto_factory_t
*this,
96 encryption_algorithm_t algo
, size_t key_size
);
99 * Create a aead instance.
101 * @param algo encryption algorithm
102 * @param key_size length of the key in bytes
103 * @return aead_t instance, NULL if not supported
105 aead_t
* (*create_aead
)(crypto_factory_t
*this,
106 encryption_algorithm_t algo
, size_t key_size
);
109 * Create a symmetric signer instance.
111 * @param algo MAC algorithm to use
112 * @return signer_t instance, NULL if not supported
114 signer_t
* (*create_signer
)(crypto_factory_t
*this,
115 integrity_algorithm_t algo
);
118 * Create a hasher instance.
120 * @param algo hash algorithm
121 * @return hasher_t instance, NULL if not supported
123 hasher_t
* (*create_hasher
)(crypto_factory_t
*this, hash_algorithm_t algo
);
126 * Create a pseudo random function instance.
128 * @param algo PRF algorithm to use
129 * @return prf_t instance, NULL if not supported
131 prf_t
* (*create_prf
)(crypto_factory_t
*this, pseudo_random_function_t algo
);
134 * Create a source of randomness.
136 * @param quality required randomness quality
137 * @return rng_t instance, NULL if no RNG with such a quality
139 rng_t
* (*create_rng
)(crypto_factory_t
*this, rng_quality_t quality
);
142 * Create a nonce generator instance.
144 * @return nonce_gen_t instance, NULL if not supported
146 nonce_gen_t
* (*create_nonce_gen
)(crypto_factory_t
*this);
149 * Create a diffie hellman instance.
151 * Additional arguments are passed to the DH constructor.
153 * @param group diffie hellman group
154 * @return diffie_hellman_t instance, NULL if not supported
156 diffie_hellman_t
* (*create_dh
)(crypto_factory_t
*this,
157 diffie_hellman_group_t group
, ...);
160 * Register a crypter constructor.
162 * @param algo algorithm to constructor
163 * @param plugin_name plugin that registered this algorithm
164 * @param create constructor function for that algorithm
167 void (*add_crypter
)(crypto_factory_t
*this, encryption_algorithm_t algo
,
168 const char *plugin_name
, crypter_constructor_t create
);
171 * Unregister a crypter constructor.
173 * @param create constructor function to unregister
175 void (*remove_crypter
)(crypto_factory_t
*this, crypter_constructor_t create
);
178 * Unregister a aead constructor.
180 * @param create constructor function to unregister
182 void (*remove_aead
)(crypto_factory_t
*this, aead_constructor_t create
);
185 * Register a aead constructor.
187 * @param algo algorithm to constructor
188 * @param plugin_name plugin that registered this algorithm
189 * @param create constructor function for that algorithm
192 void (*add_aead
)(crypto_factory_t
*this, encryption_algorithm_t algo
,
193 const char *plugin_name
, aead_constructor_t create
);
196 * Register a signer constructor.
198 * @param algo algorithm to constructor
199 * @param plugin_name plugin that registered this algorithm
200 * @param create constructor function for that algorithm
203 void (*add_signer
)(crypto_factory_t
*this, integrity_algorithm_t algo
,
204 const char *plugin_name
, signer_constructor_t create
);
207 * Unregister a signer constructor.
209 * @param create constructor function to unregister
211 void (*remove_signer
)(crypto_factory_t
*this, signer_constructor_t create
);
214 * Register a hasher constructor.
216 * The first added hasher is the preferred hasher returned on
217 * create_hasher(HASH_PREFERRED).
219 * @param algo algorithm to constructor
220 * @param plugin_name plugin that registered this algorithm
221 * @param create constructor function for that algorithm
224 void (*add_hasher
)(crypto_factory_t
*this, hash_algorithm_t algo
,
225 const char *plugin_name
, hasher_constructor_t create
);
228 * Unregister a hasher constructor.
230 * @param create constructor function to unregister
232 void (*remove_hasher
)(crypto_factory_t
*this, hasher_constructor_t create
);
235 * Register a prf constructor.
237 * @param algo algorithm to constructor
238 * @param plugin_name plugin that registered this algorithm
239 * @param create constructor function for that algorithm
242 void (*add_prf
)(crypto_factory_t
*this, pseudo_random_function_t algo
,
243 const char *plugin_name
, prf_constructor_t create
);
246 * Unregister a prf constructor.
248 * @param create constructor function to unregister
250 void (*remove_prf
)(crypto_factory_t
*this, prf_constructor_t create
);
253 * Register a source of randomness.
255 * @param quality quality of randomness this RNG serves
256 * @param plugin_name plugin that registered this algorithm
257 * @param create constructor function for such a quality
259 void (*add_rng
)(crypto_factory_t
*this, rng_quality_t quality
,
260 const char *plugin_name
, rng_constructor_t create
);
263 * Unregister a source of randomness.
265 * @param create constructor function to unregister
267 void (*remove_rng
)(crypto_factory_t
*this, rng_constructor_t create
);
270 * Register a nonce generator.
272 * @param plugin_name plugin that registered this algorithm
273 * @param create constructor function for that nonce generator
275 void (*add_nonce_gen
)(crypto_factory_t
*this, const char *plugin_name
,
276 nonce_gen_constructor_t create
);
279 * Unregister a nonce generator.
281 * @param create constructor function to unregister
283 void (*remove_nonce_gen
)(crypto_factory_t
*this,
284 nonce_gen_constructor_t create
);
287 * Register a diffie hellman constructor.
289 * @param group dh group to constructor
290 * @param plugin_name plugin that registered this algorithm
291 * @param create constructor function for that algorithm
294 void (*add_dh
)(crypto_factory_t
*this, diffie_hellman_group_t group
,
295 const char *plugin_name
, dh_constructor_t create
);
298 * Unregister a diffie hellman constructor.
300 * @param create constructor function to unregister
302 void (*remove_dh
)(crypto_factory_t
*this, dh_constructor_t create
);
305 * Create an enumerator over all registered crypter algorithms.
307 * @return enumerator over encryption_algorithm_t, plugin
309 enumerator_t
* (*create_crypter_enumerator
)(crypto_factory_t
*this);
312 * Create an enumerator over all registered aead algorithms.
314 * @return enumerator over encryption_algorithm_t, plugin
316 enumerator_t
* (*create_aead_enumerator
)(crypto_factory_t
*this);
319 * Create an enumerator over all registered signer algorithms.
321 * @return enumerator over integrity_algorithm_t, plugin
323 enumerator_t
* (*create_signer_enumerator
)(crypto_factory_t
*this);
326 * Create an enumerator over all registered hasher algorithms.
328 * @return enumerator over hash_algorithm_t, plugin
330 enumerator_t
* (*create_hasher_enumerator
)(crypto_factory_t
*this);
333 * Create an enumerator over all registered PRFs.
335 * @return enumerator over pseudo_random_function_t, plugin
337 enumerator_t
* (*create_prf_enumerator
)(crypto_factory_t
*this);
340 * Create an enumerator over all registered diffie hellman groups.
342 * @return enumerator over diffie_hellman_group_t, plugin
344 enumerator_t
* (*create_dh_enumerator
)(crypto_factory_t
*this);
347 * Create an enumerator over all registered random generators.
349 * @return enumerator over rng_quality_t, plugin
351 enumerator_t
* (*create_rng_enumerator
)(crypto_factory_t
*this);
354 * Create an enumerator over all registered nonce generators.
356 * @return enumerator over plugin
358 enumerator_t
* (*create_nonce_gen_enumerator
)(crypto_factory_t
*this);
361 * Add a test vector to the crypto factory.
363 * @param type type of the test vector
364 * @param vector pointer to a test vector, defined in crypto_tester.h
366 void (*add_test_vector
)(crypto_factory_t
*this, transform_type_t type
,
370 * Destroy a crypto_factory instance.
372 void (*destroy
)(crypto_factory_t
*this);
376 * Create a crypto_factory instance.
378 crypto_factory_t
*crypto_factory_create();
380 #endif /** CRYPTO_FACTORY_H_ @}*/