aboutsummaryrefslogtreecommitdiffstats
path: root/include/conf.h
blob: 6bf0122f65702d02c6b045315cab97ca8648da23 (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
/*************************************************
* Configuration Handling Header File             *
* (C) 1999-2006 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>

namespace Botan {

class Library_State;

namespace Config {

/*************************************************
* Load a configuration file                      *
*************************************************/
void load(const std::string&);
void load(const std::string&, Library_State&);

/*************************************************
* Set an option                                  *
*************************************************/
void set(const std::string&, const std::string&, bool = true);

/*************************************************
* Get the value of some option                   *
*************************************************/
std::vector<std::string> get_list(const std::string&);
std::string              get_string(const std::string&);
u32bit                   get_u32bit(const std::string&);
u32bit                   get_time(const std::string&);
bool                     get_bool(const std::string&);

/*************************************************
* Choose the signature format for a PK algorithm *
*************************************************/
void choose_sig_format(const std::string&, std::string&, Signature_Format&);
void choose_sig_format(const std::string&, std::string&, std::string&,
                       Signature_Format&);

}

}

#endif