aboutsummaryrefslogtreecommitdiffstats
path: root/src/entropy/proc_walk/proc_walk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entropy/proc_walk/proc_walk.h')
-rw-r--r--src/entropy/proc_walk/proc_walk.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/entropy/proc_walk/proc_walk.h b/src/entropy/proc_walk/proc_walk.h
deleted file mode 100644
index 04c3b1bba..000000000
--- a/src/entropy/proc_walk/proc_walk.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
-* 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), m_dir(nullptr) {}
-
- ~ProcWalking_EntropySource();
- private:
- const std::string m_path;
- class File_Descriptor_Source* m_dir;
- };
-
-}
-
-#endif