diff options
Diffstat (limited to 'include/ecb.h')
-rw-r--r-- | include/ecb.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/ecb.h b/include/ecb.h index 6e4a4312a..b730a4fd4 100644 --- a/include/ecb.h +++ b/include/ecb.h @@ -14,7 +14,7 @@ namespace Botan { /************************************************* * ECB * *************************************************/ -class ECB : public BlockCipherMode +class BOTAN_DLL ECB : public BlockCipherMode { protected: ECB(const std::string&, const std::string&); @@ -27,7 +27,7 @@ class ECB : public BlockCipherMode /************************************************* * ECB Encryption * *************************************************/ -class ECB_Encryption : public ECB +class BOTAN_DLL ECB_Encryption : public ECB { public: ECB_Encryption(const std::string&, const std::string&); @@ -41,7 +41,7 @@ class ECB_Encryption : public ECB /************************************************* * ECB Decryption * *************************************************/ -class ECB_Decryption : public ECB +class BOTAN_DLL ECB_Decryption : public ECB { public: ECB_Decryption(const std::string&, const std::string&); |