The unified diff between revisions [92f17752..] and [11a5f681..] is displayed below. It can also be downloaded as a raw diff.
This diff has been restricted to the following files: 'include/cbc.h'
#
#
# patch "include/cbc.h"
# from [8d0a2b5c936d2be6750f3870cab6f4f262358751]
# to [df71821e246ae7b793787d4de94c1caae4659c5f]
#
============================================================
--- include/cbc.h 8d0a2b5c936d2be6750f3870cab6f4f262358751
+++ include/cbc.h df71821e246ae7b793787d4de94c1caae4659c5f
@@ -1,6 +1,6 @@
/*************************************************
* CBC Mode Header File *
-* (C) 1999-2006 The Botan Project *
+* (C) 1999-2007 Jack Lloyd *
*************************************************/
#ifndef BOTAN_CBC_H__
@@ -14,7 +14,7 @@ namespace Botan {
/*************************************************
* CBC Encryption *
*************************************************/
-class CBC_Encryption : public BlockCipherMode
+class BOTAN_DLL CBC_Encryption : public BlockCipherMode
{
public:
CBC_Encryption(const std::string&, const std::string&);
@@ -30,7 +30,7 @@ class CBC_Encryption : public BlockCiphe
/*************************************************
* CBC Decryption *
*************************************************/
-class CBC_Decryption : public BlockCipherMode
+class BOTAN_DLL CBC_Decryption : public BlockCipherMode
{
public:
CBC_Decryption(const std::string&, const std::string&);