diff options
Diffstat (limited to 'modules/es_dev/es_dev.h')
-rw-r--r-- | modules/es_dev/es_dev.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/modules/es_dev/es_dev.h b/modules/es_dev/es_dev.h new file mode 100644 index 000000000..d491a7b18 --- /dev/null +++ b/modules/es_dev/es_dev.h @@ -0,0 +1,24 @@ +/************************************************* +* Device EntropySource Header File * +* (C) 1999-2007 The Botan Project * +*************************************************/ + +#ifndef BOTAN_ENTROPY_SRC_DEVICE_H__ +#define BOTAN_ENTROPY_SRC_DEVICE_H__ + +#include <botan/base.h> + +namespace Botan { + +/************************************************* +* Device Based Entropy Source * +*************************************************/ +class Device_EntropySource : public EntropySource + { + public: + u32bit slow_poll(byte[], u32bit); + }; + +} + +#endif |