aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/modes/aead/siv/siv.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2016-01-12 23:44:00 -0500
committerJack Lloyd <[email protected]>2016-01-12 23:44:00 -0500
commit99ff6ddbaefe5d5f6d1b86f0dd80a8820c22c89d (patch)
treeba2725805d13e8376c2065d57e02d494a43d2f95 /src/lib/modes/aead/siv/siv.h
parentb681659b470e504a9a670cdeff8916765ab89c68 (diff)
parent45124582e3b964800f0be1f88773dd6f2cafc672 (diff)
Merge GH #408 Add final attribute on many classes
Diffstat (limited to 'src/lib/modes/aead/siv/siv.h')
-rw-r--r--src/lib/modes/aead/siv/siv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/modes/aead/siv/siv.h b/src/lib/modes/aead/siv/siv.h
index 8336026cb..d46c7dcfd 100644
--- a/src/lib/modes/aead/siv/siv.h
+++ b/src/lib/modes/aead/siv/siv.h
@@ -67,7 +67,7 @@ class BOTAN_DLL SIV_Mode : public AEAD_Mode
/**
* SIV Encryption
*/
-class BOTAN_DLL SIV_Encryption : public SIV_Mode
+class BOTAN_DLL SIV_Encryption final : public SIV_Mode
{
public:
/**
@@ -86,7 +86,7 @@ class BOTAN_DLL SIV_Encryption : public SIV_Mode
/**
* SIV Decryption
*/
-class BOTAN_DLL SIV_Decryption : public SIV_Mode
+class BOTAN_DLL SIV_Decryption final : public SIV_Mode
{
public:
/**