The unified diff between revisions [229d3942..] and [51f9ee51..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'include/base64.h'

#
#
# patch "include/base64.h"
#  from [d1f12f08c64810dd5901cca8902bd3d9bec1bec8]
#    to [3155e46ef5f905472ba75bfcf21a3347405175cf]
#
============================================================
--- include/base64.h	d1f12f08c64810dd5901cca8902bd3d9bec1bec8
+++ include/base64.h	3155e46ef5f905472ba75bfcf21a3347405175cf
@@ -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]);