forked from zhllxt/asio2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathremark.txt
37 lines (25 loc) · 1.08 KB
/
remark.txt
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
>> openssl install on linux
------------------------------------------------------------------------------------------------
./config -fPIC no-shared
make
make install
>> openssl create your certificates and sign them
------------------------------------------------------------------------------------------------
//Generate a private key
openssl genrsa -des3 -out server.key 1024
//Generate Certificate signing request
openssl req -new -key server.key -out server.csr
//Sign certificate with private key
openssl x509 -req -days 3650 -in server.csr -signkey server.key -out server.crt
//Remove password requirement (needed for example)
cp server.key server.key.secure
openssl rsa -in server.key.secure -out server.key
//Generate dhparam file
openssl dhparam -out dh512.pem 512
//Once you've done that, you need to change the filenames in server.cpp and client.cpp.
server.cpp
context_.use_certificate_chain_file("server.crt");
context_.use_private_key_file("server.key", boost::asio::ssl::context::pem);
context_.use_tmp_dh_file("dh512.pem");
client.cpp
context_.load_verify_file("server.crt");