diff options
Diffstat (limited to 'src/pubkey/pk_algs.h')
-rw-r--r-- | src/pubkey/pk_algs.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/pubkey/pk_algs.h b/src/pubkey/pk_algs.h deleted file mode 100644 index d8f24a1b8..000000000 --- a/src/pubkey/pk_algs.h +++ /dev/null @@ -1,24 +0,0 @@ -/* -* PK Key Factory -* (C) 1999-2010 Jack Lloyd -* -* Distributed under the terms of the Botan license -*/ - -#ifndef BOTAN_PK_KEY_FACTORY_H__ -#define BOTAN_PK_KEY_FACTORY_H__ - -#include <botan/pk_keys.h> - -namespace Botan { - -Public_Key* make_public_key(const AlgorithmIdentifier& alg_id, - const secure_vector<byte>& key_bits); - -Private_Key* make_private_key(const AlgorithmIdentifier& alg_id, - const secure_vector<byte>& key_bits, - RandomNumberGenerator& rng); - -} - -#endif |