2
0
mirror of https://github.com/boostorg/asio.git synced 2026-01-26 06:12:08 +00:00

Regenerate certificates for ssl examples.

This commit is contained in:
Christopher Kohlhoff
2021-11-17 08:39:22 +11:00
parent 59dde8e8ea
commit 3cf596f0b2
10 changed files with 330 additions and 238 deletions

View File

@@ -105,7 +105,7 @@ public:
context_.set_password_callback(boost::bind(&server::get_password, this));
context_.use_certificate_chain_file("server.pem");
context_.use_private_key_file("server.pem", boost::asio::ssl::context::pem);
context_.use_tmp_dh_file("dh2048.pem");
context_.use_tmp_dh_file("dh4096.pem");
start_accept();
}