aboutsummaryrefslogtreecommitdiffstats
path: root/src/entropy/dev_random/dev_random.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entropy/dev_random/dev_random.h')
-rw-r--r--src/entropy/dev_random/dev_random.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/entropy/dev_random/dev_random.h b/src/entropy/dev_random/dev_random.h
deleted file mode 100644
index d74412b27..000000000
--- a/src/entropy/dev_random/dev_random.h
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
-* /dev/random EntropySource
-* (C) 1999-2009 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#ifndef BOTAN_ENTROPY_SRC_DEVICE_H__
-#define BOTAN_ENTROPY_SRC_DEVICE_H__
-
-#include <botan/entropy_src.h>
-#include <vector>
-#include <string>
-
-namespace Botan {
-
-/**
-* Entropy source reading from kernel devices like /dev/random
-*/
-class Device_EntropySource : public EntropySource
- {
- public:
- std::string name() const { return "RNG Device Reader"; }
-
- void poll(Entropy_Accumulator& accum);
-
- Device_EntropySource(const std::vector<std::string>& fsnames);
- ~Device_EntropySource();
- private:
- typedef int fd_type;
-
- std::vector<fd_type> m_devices;
- };
-
-}
-
-#endif