aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/entropy/rdseed/rdseed.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/entropy/rdseed/rdseed.h')
-rw-r--r--src/lib/entropy/rdseed/rdseed.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/entropy/rdseed/rdseed.h b/src/lib/entropy/rdseed/rdseed.h
index 0f39250a1..a6f92709a 100644
--- a/src/lib/entropy/rdseed/rdseed.h
+++ b/src/lib/entropy/rdseed/rdseed.h
@@ -20,7 +20,9 @@ class Intel_Rdseed : public Entropy_Source
{
public:
std::string name() const override { return "rdseed"; }
- void poll(Entropy_Accumulator& accum) override;
+ void poll( Entropy_Accumulator& accum ) override;
+ private:
+ static uint32_t get32BitRandom( uint32_t max_retries );
};
}