The unified diff between revisions [5ac60dc5..] and [b3f30c54..] 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 [9cf999dbe9302ad0404427873d582113951bba11]
#    to [3155e46ef5f905472ba75bfcf21a3347405175cf]
#
============================================================
--- include/base64.h	9cf999dbe9302ad0404427873d582113951bba11
+++ include/base64.h	3155e46ef5f905472ba75bfcf21a3347405175cf
@@ -1,6 +1,6 @@
 /*************************************************
 * Base64 Encoder/Decoder Header File             *
-* (C) 1999-2007 The Botan Project                *
+* (C) 1999-2007 Jack Lloyd                       *
 *************************************************/

 #ifndef BOTAN_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]);