diff options
Diffstat (limited to 'src/core/pk_algs.h')
-rw-r--r-- | src/core/pk_algs.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/pk_algs.h b/src/core/pk_algs.h new file mode 100644 index 000000000..a8fa5f176 --- /dev/null +++ b/src/core/pk_algs.h @@ -0,0 +1,22 @@ +/************************************************* +* PK Key Factory Header File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#ifndef BOTAN_PK_KEY_FACTORY_H__ +#define BOTAN_PK_KEY_FACTORY_H__ + +#include <botan/x509_key.h> +#include <botan/pkcs8.h> + +namespace Botan { + +/************************************************* +* Get an PK key object * +*************************************************/ +BOTAN_DLL Public_Key* get_public_key(const std::string&); +BOTAN_DLL Private_Key* get_private_key(const std::string&); + +} + +#endif |