/************************************************* * Device EntropySource Header File * * (C) 1999-2007 Jack Lloyd * *************************************************/ #ifndef BOTAN_ENTROPY_SRC_DEVICE_H__ #define BOTAN_ENTROPY_SRC_DEVICE_H__ #include #include #include namespace Botan { /************************************************* * Device Based Entropy Source * *************************************************/ class BOTAN_DLL Device_EntropySource : public EntropySource { public: std::string name() const { return "RNG Device Reader"; } Device_EntropySource(const std::vector& fsnames); u32bit slow_poll(byte[], u32bit); u32bit fast_poll(byte[], u32bit); private: /** A class handling reading from a Unix character device */ class Device_Reader { public: typedef int fd_type; Device_Reader(fd_type device_fd) : fd(device_fd) {} ~Device_Reader(); u32bit get(byte out[], u32bit length); static fd_type open(const std::string& pathname); private: fd_type fd; }; std::vector devices; }; } #endif