/** * BeOS EntropySource Header File * (C) 1999-2008 Jack Lloyd */ #ifndef BOTAN_ENTROPY_SRC_BEOS_H__ #define BOTAN_ENTROPY_SRC_BEOS_H__ #include namespace Botan { /** * BeOS Entropy Source */ class BOTAN_DLL BeOS_EntropySource : public EntropySource { private: std::string name() const { return "BeOS Statistics"; } u32bit fast_poll(byte buf[], u32bit length); u32bit slow_poll(byte buf[], u32bit length); }; } #endif