aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/modes/cfb/cfb.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/modes/cfb/cfb.h')
-rw-r--r--src/lib/modes/cfb/cfb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/modes/cfb/cfb.h b/src/lib/modes/cfb/cfb.h
index 25c42e4b0..49321a1c9 100644
--- a/src/lib/modes/cfb/cfb.h
+++ b/src/lib/modes/cfb/cfb.h
@@ -58,7 +58,7 @@ class BOTAN_DLL CFB_Mode : public Cipher_Mode
/**
* CFB Encryption
*/
-class BOTAN_DLL CFB_Encryption : public CFB_Mode
+class BOTAN_DLL CFB_Encryption final : public CFB_Mode
{
public:
CFB_Encryption(BlockCipher* cipher, size_t feedback_bits) :
@@ -72,7 +72,7 @@ class BOTAN_DLL CFB_Encryption : public CFB_Mode
/**
* CFB Decryption
*/
-class BOTAN_DLL CFB_Decryption : public CFB_Mode
+class BOTAN_DLL CFB_Decryption final : public CFB_Mode
{
public:
CFB_Decryption(BlockCipher* cipher, size_t feedback_bits) :