blob: 38d683deacd2316f68d20a6800f2fdf72d9fa849 (
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
|
/*************************************************
* Default Initialization Function Source File *
* (C) 1999-2006 The Botan Project *
*************************************************/
#include <botan/init.h>
#include <botan/libstate.h>
#include <botan/modules.h>
#include <botan/config.h>
#include <botan/defalloc.h>
#include <botan/fips140.h>
#include <botan/x931_rng.h>
#include <botan/def_char.h>
namespace Botan {
/*************************************************
* Library Initialization *
*************************************************/
LibraryInitializer::LibraryInitializer(const std::string& arg_string)
{
Init::initialize(arg_string);
}
/*************************************************
* Library Shutdown *
*************************************************/
LibraryInitializer::~LibraryInitializer()
{
Init::deinitialize();
}
namespace Init {
/*************************************************
* Library Initialization *
*************************************************/
void initialize(const std::string& arg_string)
{
InitializerOptions args(arg_string);
Builtin_Modules modules(false);
Mutex_Factory* mutex_factory = 0;
if(args.thread_safe())
{
mutex_factory = modules.mutex_factory();
if(!mutex_factory)
throw Exception("LibraryInitializer: thread safety impossible");
}
set_global_state(new Library_State(mutex_factory));
global_state().set_default_policy();
global_state().load(modules);
if(args.config_file() != "")
Config::load(args.config_file(), global_state());
global_state().set_transcoder(new Default_Charset_Transcoder);
global_state().set_prng(new ANSI_X931_RNG);
const u32bit min_entropy = Config::get_u32bit("rng/min_entropy");
if(min_entropy != 0 && args.seed_rng())
{
u32bit total_bits = 0;
for(u32bit j = 0; j != 4; ++j)
{
total_bits += global_state().seed_prng(true,
min_entropy - total_bits);
if(total_bits >= min_entropy)
break;
}
if(total_bits < min_entropy)
throw PRNG_Unseeded("Unable to collect sufficient entropy");
}
if(!FIPS140::passes_self_tests())
{
set_global_state(0);
throw Self_Test_Failure("FIPS-140 startup tests");
}
}
/*************************************************
* Library Shutdown *
*************************************************/
void deinitialize()
{
set_global_state(0);
}
}
}
|