blob: 6597b66069cb879194cbc836af83a51ba2b973eb (
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
|
/*
* Global State Management
* (C) 2010 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef BOTAN_GLOBAL_STATE_H__
#define BOTAN_GLOBAL_STATE_H__
#include <botan/build.h>
namespace Botan {
/*
* Forward declare to avoid recursive dependency between this header
* and libstate.h
*/
class Library_State;
/**
* Namespace for management of the global state
*/
namespace Global_State_Management {
/**
* Access the global library state
* @return reference to the global library state
*/
BOTAN_DLL Library_State& global_state();
/**
* Set the global state object
* @param state the new global state to use
*/
BOTAN_DLL void set_global_state(Library_State* state);
/**
* Set the global state object unless it is already set
* @param state the new global state to use
* @return true if the state parameter is now being used as the global
* state, or false if one was already set, in which case the
* parameter was deleted immediately
*/
BOTAN_DLL bool set_global_state_unless_set(Library_State* state);
/**
* Swap the current state for another
* @param new_state the new state object to use
* @return previous state (or NULL if none)
*/
BOTAN_DLL Library_State* swap_global_state(Library_State* new_state);
/**
* Query if the library is currently initialized
* @return true iff the library is initialized
*/
BOTAN_DLL bool global_state_exists();
}
/*
* Insert into Botan ns for convenience/backwards compatability
*/
using Global_State_Management::global_state;
}
#endif
|