aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/modes/aead/siv
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2015-09-10 02:42:48 -0400
committerJack Lloyd <[email protected]>2015-09-10 02:42:48 -0400
commit8211fdc11fa3bbe692b50d42126f74d259a4a96a (patch)
tree4c86467f85cae8e09190d91eb1299aa45c806ee1 /src/lib/modes/aead/siv
parentd21de17f070863c7e0b7e8d254eb35689001a53a (diff)
Same treatment for cipher modes
Diffstat (limited to 'src/lib/modes/aead/siv')
-rw-r--r--src/lib/modes/aead/siv/siv.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/lib/modes/aead/siv/siv.cpp b/src/lib/modes/aead/siv/siv.cpp
index 5b22216cf..a4cb65a94 100644
--- a/src/lib/modes/aead/siv/siv.cpp
+++ b/src/lib/modes/aead/siv/siv.cpp
@@ -13,8 +13,6 @@
namespace Botan {
-BOTAN_REGISTER_BLOCK_CIPHER_MODE(SIV_Encryption, SIV_Decryption);
-
SIV_Mode::SIV_Mode(BlockCipher* cipher) :
m_name(cipher->name() + "/SIV"),
m_ctr(new CTR_BE(cipher->clone())),