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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
/*
* (C) 2014,2015 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#ifndef EXAMPLE_CREDENTIALS_MANAGER_H__
#define EXAMPLE_CREDENTIALS_MANAGER_H__
#include <botan/pkcs8.h>
#include <botan/credentials_manager.h>
#include <botan/x509self.h>
#include <fstream>
#include <memory>
inline bool value_exists(const std::vector<std::string>& vec,
const std::string& val)
{
for(size_t i = 0; i != vec.size(); ++i)
{
if(vec[i] == val)
{
return true;
}
}
return false;
}
class Basic_Credentials_Manager : public Botan::Credentials_Manager
{
public:
Basic_Credentials_Manager()
{
load_certstores();
}
Basic_Credentials_Manager(Botan::RandomNumberGenerator& rng,
const std::string& server_crt,
const std::string& server_key)
{
Certificate_Info cert;
cert.key.reset(Botan::PKCS8::load_key(server_key, rng));
Botan::DataSource_Stream in(server_crt);
while(!in.end_of_data())
{
try
{
cert.certs.push_back(Botan::X509_Certificate(in));
}
catch(std::exception&)
{
}
}
// TODO: attempt to validate chain ourselves
m_creds.push_back(cert);
}
void load_certstores()
{
try
{
// TODO: make path configurable
const std::vector<std::string> paths = { "/etc/ssl/certs", "/usr/share/ca-certificates" };
for(auto const& path : paths)
{
std::shared_ptr<Botan::Certificate_Store> cs(new Botan::Certificate_Store_In_Memory(path));
m_certstores.push_back(cs);
}
}
catch(std::exception&)
{
}
}
std::vector<Botan::Certificate_Store*>
trusted_certificate_authorities(const std::string& type,
const std::string& /*hostname*/) override
{
std::vector<Botan::Certificate_Store*> v;
// don't ask for client certs
if(type == "tls-server")
{
return v;
}
for(auto const& cs : m_certstores)
{
v.push_back(cs.get());
}
return v;
}
std::vector<Botan::X509_Certificate> cert_chain(
const std::vector<std::string>& algos,
const std::string& type,
const std::string& hostname) override
{
BOTAN_UNUSED(type);
for(auto const& i : m_creds)
{
if(std::find(algos.begin(), algos.end(), i.key->algo_name()) == algos.end())
{
continue;
}
if(hostname != "" && !i.certs[0].matches_dns_name(hostname))
{
continue;
}
return i.certs;
}
return std::vector<Botan::X509_Certificate>();
}
Botan::Private_Key* private_key_for(const Botan::X509_Certificate& cert,
const std::string& /*type*/,
const std::string& /*context*/) override
{
for(auto const& i : m_creds)
{
if(cert == i.certs[0])
{
return i.key.get();
}
}
return nullptr;
}
private:
struct Certificate_Info
{
std::vector<Botan::X509_Certificate> certs;
std::shared_ptr<Botan::Private_Key> key;
};
std::vector<Certificate_Info> m_creds;
std::vector<std::shared_ptr<Botan::Certificate_Store>> m_certstores;
};
#endif
|