diff options
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/modes/aead/siv/siv.h | 4 |
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 098aa1f38..4d9a30222 100644 --- a/src/lib/modes/aead/siv/siv.h +++ b/src/lib/modes/aead/siv/siv.h @@ -52,11 +52,11 @@ class BOTAN_PUBLIC_API(2,0) SIV_Mode : public AEAD_Mode size_t tag_size() const override { return 16; } + ~SIV_Mode(); + protected: explicit SIV_Mode(BlockCipher* cipher); - ~SIV_Mode(); - size_t block_size() const { return m_bs; } StreamCipher& ctr() { return *m_ctr; } |