From 729c41753ad1ddf9f4feb337c0408896a7de91c6 Mon Sep 17 00:00:00 2001 From: Daniel Neus Date: Fri, 6 Jan 2017 15:39:56 +0100 Subject: Remove obsolete hres_timer include module doesn't exist anymore --- src/lib/entropy/entropy_srcs.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/lib/entropy') diff --git a/src/lib/entropy/entropy_srcs.cpp b/src/lib/entropy/entropy_srcs.cpp index bc99c2400..e9167873f 100644 --- a/src/lib/entropy/entropy_srcs.cpp +++ b/src/lib/entropy/entropy_srcs.cpp @@ -8,10 +8,6 @@ #include #include -#if defined(BOTAN_HAS_ENTROPY_SRC_HIGH_RESOLUTION_TIMER) - #include -#endif - #if defined(BOTAN_HAS_ENTROPY_SRC_RDRAND) #include #endif -- cgit v1.2.3 From 5a1d8124b43b5950e2771cb329f7951ac10d847d Mon Sep 17 00:00:00 2001 From: Daniel Neus Date: Fri, 6 Jan 2017 15:44:07 +0100 Subject: removed two more obsolete entropy source references --- src/lib/entropy/entropy_srcs.cpp | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/lib/entropy') 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::create(const std::string& name) { - if(name == "timestamp") - { -#if defined(BOTAN_HAS_ENTROPY_SRC_HIGH_RESOLUTION_TIMER) - return std::unique_ptr(new High_Resolution_Timestamp); -#endif - } - if(name == "rdrand") { #if defined(BOTAN_HAS_ENTROPY_SRC_RDRAND) @@ -61,13 +54,6 @@ std::unique_ptr 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(new UnixProcessInfo_EntropySource); -#endif - } - if(name == "darwin_secrandom") { #if defined(BOTAN_HAS_ENTROPY_SRC_DARWIN_SECRANDOM) -- cgit v1.2.3