aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/rng/hmac_drbg/hmac_drbg.h
diff options
context:
space:
mode:
authorDaniel Seither <[email protected]>2015-07-30 19:16:22 +0200
committerDaniel Seither <[email protected]>2015-07-30 19:16:22 +0200
commitd2cda3e74e79b2f19086d943918fdb66699f28d7 (patch)
treecc5f1a9c94481b8f2917006fcda4b93c104148c0 /src/lib/rng/hmac_drbg/hmac_drbg.h
parentf2edce7bf7fd2132e1a153093df4d47d5f57efcc (diff)
rng: Add missing overrides
Diffstat (limited to 'src/lib/rng/hmac_drbg/hmac_drbg.h')
-rw-r--r--src/lib/rng/hmac_drbg/hmac_drbg.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/lib/rng/hmac_drbg/hmac_drbg.h b/src/lib/rng/hmac_drbg/hmac_drbg.h
index 979b754b2..2fefdef0d 100644
--- a/src/lib/rng/hmac_drbg/hmac_drbg.h
+++ b/src/lib/rng/hmac_drbg/hmac_drbg.h
@@ -19,14 +19,14 @@ namespace Botan {
class BOTAN_DLL HMAC_DRBG : public RandomNumberGenerator
{
public:
- void randomize(byte buf[], size_t buf_len);
- bool is_seeded() const;
- void clear();
- std::string name() const;
+ void randomize(byte buf[], size_t buf_len) override;
+ bool is_seeded() const override;
+ void clear() override;
+ std::string name() const override;
- void reseed(size_t poll_bits);
+ void reseed(size_t poll_bits) override;
- void add_entropy(const byte input[], size_t input_len);
+ void add_entropy(const byte input[], size_t input_len) override;
/**
* @param mac the underlying mac function (eg HMAC(SHA-512))