aboutsummaryrefslogtreecommitdiffstats
path: root/include/base64.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/base64.h')
-rw-r--r--include/base64.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/base64.h b/include/base64.h
index c0bbff0d1..0003875a6 100644
--- a/include/base64.h
+++ b/include/base64.h
@@ -14,7 +14,7 @@ namespace Botan {
/*************************************************
* Base64 Encoder *
*************************************************/
-class Base64_Encoder : public Filter
+class BOTAN_DLL Base64_Encoder : public Filter
{
public:
static void encode(const byte[3], byte[4]);
@@ -36,7 +36,7 @@ class Base64_Encoder : public Filter
/*************************************************
* Base64 Decoder *
*************************************************/
-class Base64_Decoder : public Filter
+class BOTAN_DLL Base64_Decoder : public Filter
{
public:
static void decode(const byte[4], byte[3]);