forked from nomoresat/DPITunnel-cli
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ssl.cpp
55 lines (44 loc) · 1.3 KB
/
ssl.cpp
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
#include "dpitunnel.h"
#include "ssl.h"
#include <fstream>
#include <sstream>
#include <iostream>
extern struct Settings_perst_s Settings_perst;
int load_ca_bundle() {
std::ifstream file;
file.open(Settings_perst.ca_bundle_path);
if (!file) {
std::cerr << "Failed to open CA Bundle (SSL certs). File "
<< Settings_perst.ca_bundle_path << " not found" << std::endl;
return -1;
}
std::stringstream stream;
stream << file.rdbuf();
Settings_perst.ca_bundle = stream.str();
file.close();
return 0;
}
X509_STORE *gen_x509_store() {
BIO *cbio = BIO_new_mem_buf(Settings_perst.ca_bundle.c_str(), Settings_perst.ca_bundle.size());
X509_STORE *cts;
if ((cts = X509_STORE_new()) == NULL)
return NULL;
STACK_OF(X509_INFO) *inf;
if (!cts || !cbio)
return NULL;
inf = PEM_X509_INFO_read_bio(cbio, NULL, NULL, NULL);
if (!inf) {
BIO_free(cbio);
return NULL;
}
for (int i = 0; i < sk_X509_INFO_num(inf); i++) {
X509_INFO *itmp = sk_X509_INFO_value(inf, i);
if (itmp->x509)
X509_STORE_add_cert(cts, itmp->x509);
if (itmp->crl)
X509_STORE_add_crl(cts, itmp->crl);
}
sk_X509_INFO_pop_free(inf, X509_INFO_free);
BIO_free(cbio);
return cts;
}