blob: 7f465d3ebda34685403f4cbbb424076d83b5f021 (
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
|
/*************************************************
* Default Initialization Function Source File *
* (C) 1999-2007 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 *
*************************************************/
void LibraryInitializer::initialize(const std::string& arg_string)
{
InitializerOptions args(arg_string);
initialize(args);
}
/*************************************************
* Library Initialization *
*************************************************/
void LibraryInitializer::initialize(const InitializerOptions& args)
{
Builtin_Modules modules(args);
initialize(args, modules);
}
/*************************************************
* Library Initialization *
*************************************************/
void LibraryInitializer::initialize(const InitializerOptions& args,
Modules& modules)
{
try
{
set_global_state(
new Library_State(
args.thread_safe() ?
modules.mutex_factory() :
new Default_Mutex_Factory
)
);
global_state().config().load_defaults();
if(args.config_file() != "")
global_config().load_inifile(args.config_file());
global_state().load(modules);
global_state().set_prng(new ANSI_X931_RNG);
if(args.seed_rng())
{
for(u32bit j = 0; j != 4; ++j)
{
global_state().seed_prng(true, 384);
if(global_state().rng_is_seeded())
break;
}
if(!global_state().rng_is_seeded())
throw PRNG_Unseeded("Unable to collect sufficient entropy");
}
if(args.fips_mode() || args.self_test())
{
if(!FIPS140::passes_self_tests())
throw Self_Test_Failure("FIPS-140 startup tests");
}
}
catch(...)
{
deinitialize();
throw;
}
}
/*************************************************
* Library Shutdown *
*************************************************/
void LibraryInitializer::deinitialize()
{
set_global_state(0);
}
}
|