diff options
author | lloyd <[email protected]> | 2008-09-28 22:42:40 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-09-28 22:42:40 +0000 |
commit | 60fac1a24709d8854489eaf27c2f5b32de56dd6f (patch) | |
tree | d30ece3f0e1ae14e78520bde3c5b0aaf7b8d505f /include | |
parent | c32a8e6c7ecf97fc9423e6a967ce3d98b0689404 (diff) |
Put OpenPGP codec routines into codec/openpgp module
Diffstat (limited to 'include')
-rw-r--r-- | include/openpgp.h | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/include/openpgp.h b/include/openpgp.h deleted file mode 100644 index 1a078a630..000000000 --- a/include/openpgp.h +++ /dev/null @@ -1,32 +0,0 @@ -/************************************************* -* OpenPGP Header File * -* (C) 1999-2007 Jack Lloyd * -*************************************************/ - -#ifndef BOTAN_OPENPGP_H__ -#define BOTAN_OPENPGP_H__ - -#include <botan/data_src.h> -#include <string> -#include <map> - -namespace Botan { - -namespace OpenPGP { - -/************************************************* -* OpenPGP Base64 encoding/decoding * -*************************************************/ -BOTAN_DLL std::string encode(const byte[], u32bit, const std::string&, - const std::map<std::string, std::string>&); -BOTAN_DLL SecureVector<byte> decode(DataSource&, std::string&, - std::map<std::string, std::string>&); - -BOTAN_DLL std::string encode(const byte[], u32bit, const std::string&); -BOTAN_DLL SecureVector<byte> decode(DataSource&, std::string&); - -} - -} - -#endif |