The unified diff between revisions [92f17752..] and [965528e6..] 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 [44a06afd4d8dce419c79489e7bccfb3eed5a05e8]
# to [3155e46ef5f905472ba75bfcf21a3347405175cf]
#
============================================================
--- include/base64.h 44a06afd4d8dce419c79489e7bccfb3eed5a05e8
+++ include/base64.h 3155e46ef5f905472ba75bfcf21a3347405175cf
@@ -1,6 +1,6 @@
/*************************************************
* Base64 Encoder/Decoder Header File *
-* (C) 1999-2006 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]);