diff options
author | Daniel Seither <[email protected]> | 2015-07-30 18:31:12 +0200 |
---|---|---|
committer | Daniel Seither <[email protected]> | 2015-07-30 18:31:12 +0200 |
commit | 6774322c9578cd4519bd7a360ee562c4d60f5307 (patch) | |
tree | 411dbd6153af46c6b7e95f4f93a75adeeffc9129 /src/lib/hash/mdx_hash | |
parent | 6dd2fa4a785d8aa8700dc7448048ddaaa78b6d61 (diff) |
hash: Add missing overrides
Diffstat (limited to 'src/lib/hash/mdx_hash')
-rw-r--r-- | src/lib/hash/mdx_hash/mdx_hash.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/hash/mdx_hash/mdx_hash.h b/src/lib/hash/mdx_hash/mdx_hash.h index 9671cbe81..2652d9ea6 100644 --- a/src/lib/hash/mdx_hash/mdx_hash.h +++ b/src/lib/hash/mdx_hash/mdx_hash.h @@ -29,10 +29,10 @@ class BOTAN_DLL MDx_HashFunction : public HashFunction bool big_bit_endian, size_t counter_size = 8); - size_t hash_block_size() const { return buffer.size(); } + size_t hash_block_size() const override { return buffer.size(); } protected: - void add_data(const byte input[], size_t length); - void final_result(byte output[]); + void add_data(const byte input[], size_t length) override; + void final_result(byte output[]) override; /** * Run the hash's compression function over a set of blocks @@ -41,7 +41,7 @@ class BOTAN_DLL MDx_HashFunction : public HashFunction */ virtual void compress_n(const byte blocks[], size_t block_n) = 0; - void clear(); + void clear() override; /** * Copy the output to the buffer |