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/eax.h'
#
#
# patch "include/eax.h"
# from [a9a6b7d9ce355e1362719185e093ef91c48b40fa]
# to [66acdb5b8c0a5552f01ffd2127383864737801d1]
#
============================================================
--- include/eax.h a9a6b7d9ce355e1362719185e093ef91c48b40fa
+++ include/eax.h 66acdb5b8c0a5552f01ffd2127383864737801d1
@@ -13,7 +13,7 @@ namespace Botan {
/*************************************************
* EAX Base Class *
*************************************************/
-class EAX_Base : public Keyed_Filter
+class BOTAN_DLL EAX_Base : public Keyed_Filter
{
public:
void set_key(const SymmetricKey&);
@@ -39,7 +39,7 @@ class EAX_Base : public Keyed_Filter
/*************************************************
* EAX Encryption *
*************************************************/
-class EAX_Encryption : public EAX_Base
+class BOTAN_DLL EAX_Encryption : public EAX_Base
{
public:
EAX_Encryption(const std::string&, u32bit = 0);
@@ -53,7 +53,7 @@ class EAX_Encryption : public EAX_Base
/*************************************************
* EAX Decryption *
*************************************************/
-class EAX_Decryption : public EAX_Base
+class BOTAN_DLL EAX_Decryption : public EAX_Base
{
public:
EAX_Decryption(const std::string&, u32bit = 0);