aboutsummaryrefslogtreecommitdiffstats
path: root/include/es_file.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-05-18 18:33:19 +0000
committerlloyd <[email protected]>2006-05-18 18:33:19 +0000
commita2c99d3270eb73ef2db5704fc54356c6b75096f8 (patch)
treead3d6c4fcc8dd0f403f8105598943616246fe172 /include/es_file.h
Initial checkin1.5.6
Diffstat (limited to 'include/es_file.h')
-rw-r--r--include/es_file.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/include/es_file.h b/include/es_file.h
new file mode 100644
index 000000000..b27c44ed1
--- /dev/null
+++ b/include/es_file.h
@@ -0,0 +1,24 @@
+/*************************************************
+* File EntropySource Header File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#ifndef BOTAN_ENTROPY_SRC_FILE_H__
+#define BOTAN_ENTROPY_SRC_FILE_H__
+
+#include <botan/base.h>
+
+namespace Botan {
+
+/*************************************************
+* File Based Entropy Source *
+*************************************************/
+class File_EntropySource : public EntropySource
+ {
+ public:
+ u32bit slow_poll(byte[], u32bit);
+ };
+
+}
+
+#endif