diff options
author | Daniel Seither <[email protected]> | 2015-07-30 18:54:30 +0200 |
---|---|---|
committer | Daniel Seither <[email protected]> | 2015-07-30 18:54:30 +0200 |
commit | bc46687fffbdc970b13791c9c17066efb459f4cb (patch) | |
tree | d2a81da26ec517b456481e84930b17ac5a457a45 /src/lib/modes/aead/gcm/gcm.h | |
parent | fee2617be48d7c86b763dbe198797b02a8ea9a7d (diff) |
modes: Add missing overrides
Diffstat (limited to 'src/lib/modes/aead/gcm/gcm.h')
-rw-r--r-- | src/lib/modes/aead/gcm/gcm.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/modes/aead/gcm/gcm.h b/src/lib/modes/aead/gcm/gcm.h index ea3263c0a..8e7ae8b7f 100644 --- a/src/lib/modes/aead/gcm/gcm.h +++ b/src/lib/modes/aead/gcm/gcm.h @@ -26,7 +26,7 @@ class BOTAN_DLL GCM_Mode : public AEAD_Mode std::string name() const override; - size_t update_granularity() const; + size_t update_granularity() const override; Key_Length_Specification key_spec() const override; @@ -121,11 +121,12 @@ class BOTAN_DLL GHASH : public SymmetricAlgorithm secure_vector<byte> final(); - Key_Length_Specification key_spec() const { return Key_Length_Specification(16); } + Key_Length_Specification key_spec() const override + { return Key_Length_Specification(16); } void clear() override; - std::string name() const { return "GHASH"; } + std::string name() const override { return "GHASH"; } private: void key_schedule(const byte key[], size_t key_len) override; |