diff options
author | Jack Lloyd <[email protected]> | 2017-08-03 07:38:56 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-08-03 10:37:02 -0400 |
commit | 6ce23f05c68f9c6b1b4742b8eb1f3068760fdd21 (patch) | |
tree | 99ba28ba5e9ef822b0fe0b4504ed71b3f82b0921 /src/tests/test_rng.cpp | |
parent | d1af646c365197de243c844d138f245d1dcac6ba (diff) |
Add Stateful_RNG::reset_reseed_counter
Instead of giving subclasses access to the variable directly.
Diffstat (limited to 'src/tests/test_rng.cpp')
-rw-r--r-- | src/tests/test_rng.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test_rng.cpp b/src/tests/test_rng.cpp index 2a8477c30..8c82b023a 100644 --- a/src/tests/test_rng.cpp +++ b/src/tests/test_rng.cpp @@ -393,7 +393,7 @@ class Stateful_RNG_Tests : public Test class HMAC_DRBG_Unit_Tests : public Stateful_RNG_Tests { public: - std::string rng_name() const { return "HMAC_DRBG"; } + std::string rng_name() const override { return "HMAC_DRBG"; } std::unique_ptr<Botan::Stateful_RNG> create_rng(Botan::RandomNumberGenerator* underlying_rng, Botan::Entropy_Sources* underlying_es, |