aboutsummaryrefslogtreecommitdiffstats
path: root/src/entropy/rdrand/rdrand.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/entropy/rdrand/rdrand.h')
-rw-r--r--src/entropy/rdrand/rdrand.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/entropy/rdrand/rdrand.h b/src/entropy/rdrand/rdrand.h
deleted file mode 100644
index d7629d37f..000000000
--- a/src/entropy/rdrand/rdrand.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
-* Entropy Source Using Intel's rdrand instruction
-* (C) 2012 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#ifndef BOTAN_ENTROPY_SRC_RDRAND_H__
-#define BOTAN_ENTROPY_SRC_RDRAND_H__
-
-#include <botan/entropy_src.h>
-
-namespace Botan {
-
-/**
-* Entropy source using the rdrand instruction first introduced on
-* Intel's Ivy Bridge architecture.
-*/
-class Intel_Rdrand : public EntropySource
- {
- public:
- std::string name() const { return "Intel Rdrand"; }
- void poll(Entropy_Accumulator& accum);
- };
-
-}
-
-#endif