blob: 649dcc9b4a374775f86556caaca17f94fd579f62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
/*
* Library Internal/Global State
* (C) 1999-2010 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#include <botan/libstate.h>
#include <botan/charset.h>
#include <botan/engine.h>
#include <botan/cpuid.h>
#include <botan/oids.h>
#include <botan/internal/core_engine.h>
#include <botan/internal/stl_util.h>
#include <algorithm>
#if defined(BOTAN_HAS_SELFTESTS)
#include <botan/selftest.h>
#endif
#if defined(BOTAN_HAS_ENGINE_ASSEMBLER)
#include <botan/internal/asm_engine.h>
#endif
#if defined(BOTAN_HAS_ENGINE_AES_ISA)
#include <botan/internal/aes_isa_engine.h>
#endif
#if defined(BOTAN_HAS_ENGINE_SIMD)
#include <botan/internal/simd_engine.h>
#endif
#if defined(BOTAN_HAS_ENGINE_GNU_MP)
#include <botan/internal/gnump_engine.h>
#endif
#if defined(BOTAN_HAS_ENGINE_OPENSSL)
#include <botan/internal/openssl_engine.h>
#endif
namespace Botan {
/*
* Return a reference to the Algorithm_Factory
*/
Algorithm_Factory& Library_State::algorithm_factory() const
{
if(!m_algorithm_factory)
throw Invalid_State("Uninitialized in Library_State::algorithm_factory");
return *m_algorithm_factory;
}
/*
* Return a reference to the global PRNG
*/
RandomNumberGenerator& Library_State::global_rng()
{
return *m_global_prng;
}
void Library_State::initialize()
{
if(m_algorithm_factory.get())
throw Invalid_State("Library_State has already been initialized");
CPUID::initialize();
SCAN_Name::set_default_aliases();
OIDS::set_defaults();
m_algorithm_factory.reset(new Algorithm_Factory());
#if defined(BOTAN_HAS_ENGINE_GNU_MP)
algorithm_factory().add_engine(new GMP_Engine);
#endif
#if defined(BOTAN_HAS_ENGINE_OPENSSL)
algorithm_factory().add_engine(new OpenSSL_Engine);
#endif
#if defined(BOTAN_HAS_ENGINE_AES_ISA)
algorithm_factory().add_engine(new AES_ISA_Engine);
#endif
#if defined(BOTAN_HAS_ENGINE_SIMD)
algorithm_factory().add_engine(new SIMD_Engine);
#endif
#if defined(BOTAN_HAS_ENGINE_ASSEMBLER)
algorithm_factory().add_engine(new Assembler_Engine);
#endif
algorithm_factory().add_engine(new Core_Engine);
m_sources = entropy_sources();
m_global_prng.reset(new Serialized_RNG());
#if defined(BOTAN_HAS_SELFTESTS)
confirm_startup_self_tests(algorithm_factory());
#endif
}
}
|