diff options
Diffstat (limited to 'src/core/get_pbe.h')
-rw-r--r-- | src/core/get_pbe.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/core/get_pbe.h b/src/core/get_pbe.h new file mode 100644 index 000000000..e7b434c1f --- /dev/null +++ b/src/core/get_pbe.h @@ -0,0 +1,22 @@ +/************************************************* +* PBE Lookup Header File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#ifndef BOTAN_LOOKUP_PBE_H__ +#define BOTAN_LOOKUP_PBE_H__ + +#include <botan/pbe.h> +#include <string> + +namespace Botan { + +/************************************************* +* Get a PBE object * +*************************************************/ +BOTAN_DLL PBE* get_pbe(const std::string&); +BOTAN_DLL PBE* get_pbe(const OID&, DataSource&); + +} + +#endif |