/* * PK Key Factory * (C) 1999-2010 Jack Lloyd * * Botan is released under the Simplified BSD License (see license.txt) */ #ifndef BOTAN_PK_KEY_FACTORY_H__ #define BOTAN_PK_KEY_FACTORY_H__ #include namespace Botan { Public_Key* make_public_key(const AlgorithmIdentifier& alg_id, const secure_vector& key_bits); Private_Key* make_private_key(const AlgorithmIdentifier& alg_id, const secure_vector& key_bits, RandomNumberGenerator& rng); } #endif