diff options
Diffstat (limited to 'src/entropy/proc_walk/proc_walk.h')
-rw-r--r-- | src/entropy/proc_walk/proc_walk.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/entropy/proc_walk/proc_walk.h b/src/entropy/proc_walk/proc_walk.h new file mode 100644 index 000000000..e493c7ed2 --- /dev/null +++ b/src/entropy/proc_walk/proc_walk.h @@ -0,0 +1,36 @@ +/* +* File Tree Walking EntropySource +* (C) 1999-2008 Jack Lloyd +* +* Distributed under the terms of the Botan license +*/ + +#ifndef BOTAN_ENTROPY_SRC_PROC_WALK_H__ +#define BOTAN_ENTROPY_SRC_PROC_WALK_H__ + +#include <botan/entropy_src.h> +#include <memory> + +namespace Botan { + +/** +* File Tree Walking Entropy Source +*/ +class ProcWalking_EntropySource : public EntropySource + { + public: + std::string name() const { return "Proc Walker"; } + + void poll(Entropy_Accumulator& accum); + + ProcWalking_EntropySource(const std::string& root_dir) : m_path(root_dir) {} + + ~ProcWalking_EntropySource(); + private: + const std::string m_path; + class File_Descriptor_Source* m_dir; + }; + +} + +#endif |