diff options
Diffstat (limited to 'src/lib/entropy/rdrand/rdrand.h')
-rw-r--r-- | src/lib/entropy/rdrand/rdrand.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/entropy/rdrand/rdrand.h b/src/lib/entropy/rdrand/rdrand.h index 1fa928641..5ace28382 100644 --- a/src/lib/entropy/rdrand/rdrand.h +++ b/src/lib/entropy/rdrand/rdrand.h @@ -20,7 +20,9 @@ class Intel_Rdrand : public Entropy_Source { public: std::string name() const override { return "rdrand"; } - void poll(Entropy_Accumulator& accum) override; + void poll( Entropy_Accumulator& accum ) override; + private: + static uint32_t get32BitRandom(); }; } |