/************************************************* * PK Key Factory Header File * * (C) 1999-2006 The Botan Project * *************************************************/ #ifndef BOTAN_PK_KEY_FACTORY_H__ #define BOTAN_PK_KEY_FACTORY_H__ #include #include namespace Botan { /************************************************* * Get an PK key object * *************************************************/ Public_Key* get_public_key(const std::string&); Private_Key* get_private_key(const std::string&); } #endif