aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/modes/aead/eax/eax.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/modes/aead/eax/eax.cpp')
-rw-r--r--src/lib/modes/aead/eax/eax.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/modes/aead/eax/eax.cpp b/src/lib/modes/aead/eax/eax.cpp
index 00253e405..1a31c3cff 100644
--- a/src/lib/modes/aead/eax/eax.cpp
+++ b/src/lib/modes/aead/eax/eax.cpp
@@ -184,7 +184,7 @@ void EAX_Decryption::finish(secure_vector<uint8_t>& buffer, size_t offset)
mac ^= m_ad_mac;
if(!constant_time_compare(mac.data(), included_tag, tag_size()))
- throw Integrity_Failure("EAX tag check failed");
+ throw Invalid_Authentication_Tag("EAX tag check failed");
buffer.resize(offset + remaining);