diff options
author | Daniel Neus <[email protected]> | 2017-01-06 15:44:07 +0100 |
---|---|---|
committer | Daniel Neus <[email protected]> | 2017-01-06 15:44:07 +0100 |
commit | 5a1d8124b43b5950e2771cb329f7951ac10d847d (patch) | |
tree | 31470097f8cf2569c332e60a0f47bbb64201a9c9 /src/lib | |
parent | 729c41753ad1ddf9f4feb337c0408896a7de91c6 (diff) |
removed two more obsolete entropy source references
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/entropy/entropy_srcs.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/lib/entropy/entropy_srcs.cpp b/src/lib/entropy/entropy_srcs.cpp index e9167873f..252be4fa1 100644 --- a/src/lib/entropy/entropy_srcs.cpp +++ b/src/lib/entropy/entropy_srcs.cpp @@ -40,13 +40,6 @@ namespace Botan { std::unique_ptr<Entropy_Source> Entropy_Source::create(const std::string& name) { - if(name == "timestamp") - { -#if defined(BOTAN_HAS_ENTROPY_SRC_HIGH_RESOLUTION_TIMER) - return std::unique_ptr<Entropy_Source>(new High_Resolution_Timestamp); -#endif - } - if(name == "rdrand") { #if defined(BOTAN_HAS_ENTROPY_SRC_RDRAND) @@ -61,13 +54,6 @@ std::unique_ptr<Entropy_Source> Entropy_Source::create(const std::string& name) #endif } - if(name == "proc_info") - { -#if defined(BOTAN_HAS_ENTROPY_SRC_UNIX_PROCESS_RUNNER) - return std::unique_ptr<Entropy_Source>(new UnixProcessInfo_EntropySource); -#endif - } - if(name == "darwin_secrandom") { #if defined(BOTAN_HAS_ENTROPY_SRC_DARWIN_SECRANDOM) |