aboutsummaryrefslogtreecommitdiffstats
path: root/src/python
diff options
context:
space:
mode:
authorlloyd <[email protected]>2015-02-04 04:03:38 +0000
committerlloyd <[email protected]>2015-02-04 04:03:38 +0000
commit0dd060fed07b0060f94e3bae62e125a85c1bb877 (patch)
treeed4bc7a961e2b30f17ed5e80769c84b0c313c8b7 /src/python
parentf9a7c85b74be0f4a7273e8e0591703af83036e81 (diff)
Remove algo factory, engines, global RNG, global state, etc.
Convert all uses of Algorithm_Factory and the engines to using Algo_Registry The shared pool of entropy sources remains but is moved to EntropySource. With that and few remaining initializations (default OIDs and aliases) moved elsewhere, the global state is empty and init and shutdown are no-ops. Remove almost all of the headers and code for handling the global state, except LibraryInitializer which remains as a compatability stub. Update seeding for blinding so only one hacky almost-global RNG instance needs to be setup instead of across all pubkey uses (it uses either the system RNG or an AutoSeeded_RNG if the system RNG is not available).
Diffstat (limited to 'src/python')
-rw-r--r--src/python/__init__.py3
-rw-r--r--src/python/core.cpp4
2 files changed, 0 insertions, 7 deletions
diff --git a/src/python/__init__.py b/src/python/__init__.py
index 2df9a456f..f98b5a0ec 100644
--- a/src/python/__init__.py
+++ b/src/python/__init__.py
@@ -1,4 +1 @@
from _botan import *
-
-# Initialize the library when the module is imported
-init = LibraryInitializer()
diff --git a/src/python/core.cpp b/src/python/core.cpp
index d3c314374..cb395ee60 100644
--- a/src/python/core.cpp
+++ b/src/python/core.cpp
@@ -5,7 +5,6 @@
* Botan is released under the Simplified BSD License (see license.txt)
*/
-#include <botan/init.h>
#include <botan/pipe.h>
#include <botan/lookup.h>
#include <botan/cryptobox.h>
@@ -191,9 +190,6 @@ std::string python_kdf2(const std::string& param,
BOOST_PYTHON_MODULE(_botan)
{
- python::class_<LibraryInitializer>("LibraryInitializer")
- .def(python::init< python::optional<std::string> >());
-
python::class_<Python_RandomNumberGenerator>("RandomNumberGenerator")
.def(python::init<>())
.def("__str__", &Python_RandomNumberGenerator::name)