blob: 5e3f8ed1c71fee0241ae65fafd9dd0bcb0687e30 (
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
|
/*************************************************
* Configuration Handling Header File *
* (C) 1999-2007 The Botan Project *
*************************************************/
#ifndef BOTAN_POLICY_CONF_H__
#define BOTAN_POLICY_CONF_H__
#include <botan/types.h>
#include <botan/enums.h>
#include <string>
#include <vector>
#include <map>
namespace Botan {
/*************************************************
* Library Configuration Settings *
*************************************************/
class Config
{
public:
void load_defaults();
std::string get(const std::string&, const std::string&) const;
bool is_set(const std::string&, const std::string&) const;
void set(const std::string&, const std::string&,
const std::string&, bool = true);
std::string option(const std::string&) const;
u32bit option_as_u32bit(const std::string&) const;
u32bit option_as_time(const std::string&) const;
bool option_as_bool(const std::string&) const;
std::vector<std::string> option_as_list(const std::string&) const;
void set_option(const std::string, const std::string&);
void add_alias(const std::string&, const std::string&);
std::string deref_alias(const std::string&) const;
void load_inifile(const std::string&);
static void choose_sig_format(const std::string&, std::string&,
Signature_Format&);
private:
std::map<std::string, std::string> settings;
};
/*************************************************
* Hook for the global config *
*************************************************/
Config& global_config();
}
#endif
|