From cae7a66072905bc264ecf0805a8738a674ff2986 Mon Sep 17 00:00:00 2001 From: Jack Lloyd Date: Sun, 3 Jul 2016 14:36:55 -0400 Subject: Revamp entropy polling Remove Entropy_Accumulator, instead have entropy sources directly add entropy to the RNG. --- src/lib/entropy/rdseed/rdseed.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/entropy/rdseed/rdseed.h') diff --git a/src/lib/entropy/rdseed/rdseed.h b/src/lib/entropy/rdseed/rdseed.h index f86c32768..4ea584354 100644 --- a/src/lib/entropy/rdseed/rdseed.h +++ b/src/lib/entropy/rdseed/rdseed.h @@ -20,7 +20,7 @@ class Intel_Rdseed final : public Entropy_Source { public: std::string name() const override { return "rdseed"; } - void poll(Entropy_Accumulator& accum) override; + size_t poll(RandomNumberGenerator& rng) override; }; } -- cgit v1.2.3