/************************************************* * Device EntropySource Header File * * (C) 1999-2007 Jack Lloyd * *************************************************/ #ifndef BOTAN_ENTROPY_SRC_DEVICE_H__ #define BOTAN_ENTROPY_SRC_DEVICE_H__ #include #include namespace Botan { /************************************************* * Device Based Entropy Source * *************************************************/ class Device_EntropySource : public EntropySource { public: Device_EntropySource(const std::vector& fs) : fsnames(fs) {} u32bit slow_poll(byte[], u32bit); private: std::vector fsnames; }; } #endif