diff options
Diffstat (limited to 'src/entropy/beos_stats/es_beos.h')
-rw-r--r-- | src/entropy/beos_stats/es_beos.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/entropy/beos_stats/es_beos.h b/src/entropy/beos_stats/es_beos.h index ec461780d..686ac5c38 100644 --- a/src/entropy/beos_stats/es_beos.h +++ b/src/entropy/beos_stats/es_beos.h @@ -1,25 +1,25 @@ -/************************************************* -* BeOS EntropySource Header File * -* (C) 1999-2007 Jack Lloyd * -*************************************************/ +/** +* BeOS EntropySource Header File +* (C) 1999-2008 Jack Lloyd +*/ #ifndef BOTAN_ENTROPY_SRC_BEOS_H__ #define BOTAN_ENTROPY_SRC_BEOS_H__ -#include <botan/buf_es.h> +#include <botan/entropy_src.h> namespace Botan { -/************************************************* -* BeOS Entropy Source * -*************************************************/ -class BOTAN_DLL BeOS_EntropySource : public Buffered_EntropySource +/** +* BeOS Entropy Source +*/ +class BOTAN_DLL BeOS_EntropySource : public EntropySource { private: std::string name() const { return "BeOS Statistics"; } - void do_fast_poll(); - void do_slow_poll(); + u32bit fast_poll(byte buf[], u32bit length); + u32bit slow_poll(byte buf[], u32bit length); }; } |