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