Diag-Client-Lib
|
Tls context class responsible for setting cipher suite and loading certificates. More...
#include <tls_context.h>
Public Types | |
using | Tls12VersionClient = client::tls::TlsVersion12 |
Type alias for Tls client with version 1.2. More... | |
using | Tls13VersionClient = client::tls::TlsVersion13 |
Type alias for Tls client with version 1.3. More... | |
using | Tls12VersionServer = server::tls::TlsVersion12 |
Type alias for Tls server with version 1.2. More... | |
using | Tls13VersionServer = server::tls::TlsVersion13 |
Type alias for Tls server with version 1.3. More... | |
using | SslContext = boost::asio::ssl::context |
Type alias for boost ssl context. More... | |
Public Member Functions | |
TlsContext (Tls12VersionClient client, std::string_view ca_certification_path) noexcept | |
Constructs an instance of TlsContext. More... | |
TlsContext (Tls13VersionClient client, std::string_view ca_certification_path) noexcept | |
Constructs an instance of TlsContext. More... | |
TlsContext (Tls12VersionServer server, std::string_view certificate_path, std::string_view private_key_path) noexcept | |
Constructs an instance of TlsContext. More... | |
TlsContext (Tls13VersionServer server, std::string_view certificate_path, std::string_view private_key_path) noexcept | |
Constructs an instance of TlsContext. More... | |
TlsContext (const TlsContext &other) noexcept=delete | |
Deleted copy assignment and copy constructor. More... | |
TlsContext & | operator= (const TlsContext &other) noexcept=delete |
TlsContext (TlsContext &&other) noexcept=default | |
Defaulted move assignment and move constructor. More... | |
TlsContext & | operator= (TlsContext &&other) noexcept=default |
~TlsContext () noexcept=default | |
Destruct an instance of TcpSocket. More... | |
SslContext & | GetContext () noexcept |
Function to get the ssl context reference. More... | |
Private Attributes | |
SslContext | ssl_context_ |
Store the boost ssl context. More... | |
Tls context class responsible for setting cipher suite and loading certificates.
Definition at line 24 of file tls_context.h.
using boost_support::socket::tls::TlsContext::SslContext = boost::asio::ssl::context |
Type alias for boost ssl context.
Definition at line 49 of file tls_context.h.
Type alias for Tls client with version 1.2.
Definition at line 29 of file tls_context.h.
Type alias for Tls server with version 1.2.
Definition at line 39 of file tls_context.h.
Type alias for Tls client with version 1.3.
Definition at line 34 of file tls_context.h.
Type alias for Tls server with version 1.3.
Definition at line 44 of file tls_context.h.
|
noexcept |
Constructs an instance of TlsContext.
[in] | client | The Tls 1.2 version client |
[in] | ca_certification_path | The path to root CA certificate |
Definition at line 135 of file tls_context.cpp.
|
noexcept |
Constructs an instance of TlsContext.
[in] | client | The Tls 1.2 version client |
[in] | ca_certification_path | The path to root CA certificate |
Definition at line 146 of file tls_context.cpp.
|
noexcept |
Constructs an instance of TlsContext.
[in] | server | The Tls 1.2 version server |
[in] | certificate_path | The path to root CA certificate |
[in] | private_key_path | The path to private key |
Definition at line 157 of file tls_context.cpp.
|
noexcept |
Constructs an instance of TlsContext.
[in] | server | The Tls 1.2 version server |
[in] | certificate_path | The path to root CA certificate |
[in] | private_key_path | The path to private key |
Definition at line 170 of file tls_context.cpp.
|
deletenoexcept |
Deleted copy assignment and copy constructor.
|
defaultnoexcept |
Defaulted move assignment and move constructor.
|
defaultnoexcept |
Destruct an instance of TcpSocket.
|
inlinenoexcept |
Function to get the ssl context reference.
Definition at line 115 of file tls_context.h.
References ssl_context_.
|
deletenoexcept |
|
defaultnoexcept |
|
private |
Store the boost ssl context.
Definition at line 121 of file tls_context.h.
Referenced by GetContext().