aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/hash/gost_3411
diff options
context:
space:
mode:
authorDaniel Seither <[email protected]>2015-07-30 18:31:12 +0200
committerDaniel Seither <[email protected]>2015-07-30 18:31:12 +0200
commit6774322c9578cd4519bd7a360ee562c4d60f5307 (patch)
tree411dbd6153af46c6b7e95f4f93a75adeeffc9129 /src/lib/hash/gost_3411
parent6dd2fa4a785d8aa8700dc7448048ddaaa78b6d61 (diff)
hash: Add missing overrides
Diffstat (limited to 'src/lib/hash/gost_3411')
-rw-r--r--src/lib/hash/gost_3411/gost_3411.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/hash/gost_3411/gost_3411.h b/src/lib/hash/gost_3411/gost_3411.h
index fb636e30e..2ad96dbdb 100644
--- a/src/lib/hash/gost_3411/gost_3411.h
+++ b/src/lib/hash/gost_3411/gost_3411.h
@@ -19,19 +19,19 @@ namespace Botan {
class BOTAN_DLL GOST_34_11 : public HashFunction
{
public:
- std::string name() const { return "GOST-R-34.11-94" ; }
- size_t output_length() const { return 32; }
- size_t hash_block_size() const { return 32; }
- HashFunction* clone() const { return new GOST_34_11; }
+ std::string name() const override { return "GOST-R-34.11-94" ; }
+ size_t output_length() const override { return 32; }
+ size_t hash_block_size() const override { return 32; }
+ HashFunction* clone() const override { return new GOST_34_11; }
- void clear();
+ void clear() override;
GOST_34_11();
private:
void compress_n(const byte input[], size_t blocks);
- void add_data(const byte[], size_t);
- void final_result(byte[]);
+ void add_data(const byte[], size_t) override;
+ void final_result(byte[]) override;
GOST_28147_89 cipher;
secure_vector<byte> buffer, sum, hash;