diff options
Diffstat (limited to 'include/openpgp.h')
-rw-r--r-- | include/openpgp.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/openpgp.h b/include/openpgp.h index 1a1290f39..1a078a630 100644 --- a/include/openpgp.h +++ b/include/openpgp.h @@ -17,13 +17,13 @@ namespace OpenPGP { /************************************************* * OpenPGP Base64 encoding/decoding * *************************************************/ -std::string encode(const byte[], u32bit, const std::string&, - const std::map<std::string, std::string>&); -SecureVector<byte> decode(DataSource&, std::string&, - std::map<std::string, std::string>&); +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>&); -std::string encode(const byte[], u32bit, const std::string&); -SecureVector<byte> decode(DataSource&, std::string&); +BOTAN_DLL std::string encode(const byte[], u32bit, const std::string&); +BOTAN_DLL SecureVector<byte> decode(DataSource&, std::string&); } |