diff options
author | lloyd <[email protected]> | 2015-02-11 23:16:51 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2015-02-11 23:16:51 +0000 |
commit | 85caef829c9eeb7c224ad3b2e3ffbcfe981c2428 (patch) | |
tree | 130b3913b5e82de89042a74c2a8046f103deff1b /src/lib/modes/aead | |
parent | 92bc6eac5addf77d610fad21378bc4434ef98119 (diff) |
Add version_cstr (returns const char*) and move tag_size from AEAD to
Cipher_Mode. Add missing includes in entropy sources, noticed by clang.
Diffstat (limited to 'src/lib/modes/aead')
-rw-r--r-- | src/lib/modes/aead/aead.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lib/modes/aead/aead.h b/src/lib/modes/aead/aead.h index 41fc605ba..6bbb39dcb 100644 --- a/src/lib/modes/aead/aead.h +++ b/src/lib/modes/aead/aead.h @@ -55,11 +55,6 @@ class BOTAN_DLL AEAD_Mode : public Cipher_Mode * modes, and large enough that random collisions are unlikely). */ size_t default_nonce_length() const override { return 12; } - - /** - * Return the size of the authentication tag used (in bytes) - */ - virtual size_t tag_size() const = 0; }; /** |