/************************************************* * EGD EntropySource Header File * * (C) 1999-2006 The Botan Project * *************************************************/ #ifndef BOTAN_EXT_ENTROPY_SRC_EGD_H__ #define BOTAN_EXT_ENTROPY_SRC_EGD_H__ #include #include #include namespace Botan { /************************************************* * EGD Entropy Source * *************************************************/ class EGD_EntropySource : public EntropySource { public: u32bit slow_poll(byte[], u32bit); EGD_EntropySource(const std::string& = ""); private: u32bit do_poll(byte[], u32bit, const std::string&) const; std::vector paths; }; } #endif