/************************************************* * OpenPGP Header File * * (C) 1999-2007 Jack Lloyd * *************************************************/ #ifndef BOTAN_OPENPGP_H__ #define BOTAN_OPENPGP_H__ #include #include #include namespace Botan { namespace OpenPGP { /************************************************* * OpenPGP Base64 encoding/decoding * *************************************************/ BOTAN_DLL std::string encode(const byte[], u32bit, const std::string&, const std::map&); BOTAN_DLL SecureVector decode(DataSource&, std::string&, std::map&); BOTAN_DLL std::string encode(const byte[], u32bit, const std::string&); BOTAN_DLL SecureVector decode(DataSource&, std::string&); } } #endif