aboutsummaryrefslogtreecommitdiffstats
path: root/src/modes/cfb/cfb.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2013-08-19 14:31:17 +0000
committerlloyd <[email protected]>2013-08-19 14:31:17 +0000
commit394033c9fe998dc6a64162414bbc2b705f1ec901 (patch)
tree0c5f8331cde1296a2c266800cbc5c594d128098d /src/modes/cfb/cfb.h
parent178fe54130c3582e5a292bac063f53a77dc4c4df (diff)
Add Cipher_Mode intermediate class. Add missing BOTAN_DLL exports
Diffstat (limited to 'src/modes/cfb/cfb.h')
-rw-r--r--src/modes/cfb/cfb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modes/cfb/cfb.h b/src/modes/cfb/cfb.h
index 19e5b4bb0..46b1997d2 100644
--- a/src/modes/cfb/cfb.h
+++ b/src/modes/cfb/cfb.h
@@ -8,7 +8,7 @@
#ifndef BOTAN_MODE_CFB_H__
#define BOTAN_MODE_CFB_H__
-#include <botan/transform.h>
+#include <botan/cipher_mode.h>
#include <botan/block_cipher.h>
#include <botan/mode_pad.h>
#include <memory>
@@ -18,7 +18,7 @@ namespace Botan {
/**
* CFB Mode
*/
-class CFB_Mode : public Transformation
+class BOTAN_DLL CFB_Mode : public Cipher_Mode
{
public:
secure_vector<byte> start(const byte nonce[], size_t nonce_len) override;