aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstate/init.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-01-01 21:20:55 +0000
committerlloyd <[email protected]>2014-01-01 21:20:55 +0000
commit197dc467dec28a04c3b2f30da7cef122dfbb13e9 (patch)
treecdbd3ddaec051c72f0a757db461973d90c37b97a /src/libstate/init.cpp
parent62faac373c07cfe10bc8c309e89ebdd30d8e5eaa (diff)
Shuffle things around. Add NIST X.509 test to build.
Diffstat (limited to 'src/libstate/init.cpp')
-rw-r--r--src/libstate/init.cpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/src/libstate/init.cpp b/src/libstate/init.cpp
deleted file mode 100644
index 2d724f366..000000000
--- a/src/libstate/init.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
-* Default Initialization Function
-* (C) 1999-2009 Jack Lloyd
-*
-* Distributed under the terms of the Botan license
-*/
-
-#include <botan/init.h>
-#include <botan/libstate.h>
-#include <botan/global_state.h>
-
-namespace Botan {
-
-/*
-* Library Initialization
-*/
-void LibraryInitializer::initialize(const std::string&)
- {
-
- try
- {
- /*
- This two stage initialization process is because Library_State's
- constructor will implicitly refer to global state through the
- allocators and so forth, so global_state() has to be a valid
- reference before initialize() can be called. Yeah, gross.
- */
- Global_State_Management::set_global_state(new Library_State);
-
- global_state().initialize();
- }
- catch(...)
- {
- deinitialize();
- throw;
- }
- }
-
-/*
-* Library Shutdown
-*/
-void LibraryInitializer::deinitialize()
- {
- Global_State_Management::set_global_state(nullptr);
- }
-
-}