diff options
author | lloyd <[email protected]> | 2010-07-27 15:59:58 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-07-27 15:59:58 +0000 |
commit | b910f61fd17fabdf96140f921dc90ca8dbd364d3 (patch) | |
tree | 5094a934e7482da5950e533d000cf1a7cb0cecfd /src/libstate | |
parent | 46b58b9602dbc8eea6080d2aefc878f8de9f15e4 (diff) |
Rename Default_Engine to Core_Engine which describes its purposes
(slightly) better.
Diffstat (limited to 'src/libstate')
-rw-r--r-- | src/libstate/info.txt | 2 | ||||
-rw-r--r-- | src/libstate/libstate.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/libstate/info.txt b/src/libstate/info.txt index 749b6afaf..22095d1a3 100644 --- a/src/libstate/info.txt +++ b/src/libstate/info.txt @@ -26,7 +26,7 @@ algo_factory alloc bigint block -def_engine +core_engine engine filters hash diff --git a/src/libstate/libstate.cpp b/src/libstate/libstate.cpp index 1db9ca44c..8d8634bab 100644 --- a/src/libstate/libstate.cpp +++ b/src/libstate/libstate.cpp @@ -10,7 +10,7 @@ #include <botan/engine.h> #include <botan/cpuid.h> #include <botan/internal/defalloc.h> -#include <botan/internal/default_engine.h> +#include <botan/internal/core_engine.h> #include <botan/internal/mutex.h> #include <botan/internal/mux_noop.h> #include <botan/internal/stl_util.h> @@ -301,7 +301,7 @@ void Library_State::initialize(bool thread_safe) algorithm_factory().add_engine(new Assembler_Engine); #endif - algorithm_factory().add_engine(new Default_Engine); + algorithm_factory().add_engine(new Core_Engine); #if defined(BOTAN_HAS_SELFTESTS) confirm_startup_self_tests(algorithm_factory()); |