diff options
author | Daniel Seither <[email protected]> | 2015-07-30 19:16:22 +0200 |
---|---|---|
committer | Daniel Seither <[email protected]> | 2015-07-30 19:16:22 +0200 |
commit | d2cda3e74e79b2f19086d943918fdb66699f28d7 (patch) | |
tree | cc5f1a9c94481b8f2917006fcda4b93c104148c0 /src/lib/rng/hmac_drbg/hmac_drbg.h | |
parent | f2edce7bf7fd2132e1a153093df4d47d5f57efcc (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.h | 12 |
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)) |