Diag-Client-Lib
Public Types | Public Member Functions | Private Attributes | List of all members
boost_support::socket::tls::TlsContext Class Referencefinal

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...
 
TlsContextoperator= (const TlsContext &other) noexcept=delete
 
 TlsContext (TlsContext &&other) noexcept=default
 Defaulted move assignment and move constructor. More...
 
TlsContextoperator= (TlsContext &&other) noexcept=default
 
 ~TlsContext () noexcept=default
 Destruct an instance of TcpSocket. More...
 
SslContextGetContext () noexcept
 Function to get the ssl context reference. More...
 

Private Attributes

SslContext ssl_context_
 Store the boost ssl context. More...
 

Detailed Description

Tls context class responsible for setting cipher suite and loading certificates.

Definition at line 24 of file tls_context.h.

Member Typedef Documentation

◆ SslContext

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.

◆ Tls12VersionClient

Type alias for Tls client with version 1.2.

Definition at line 29 of file tls_context.h.

◆ Tls12VersionServer

Type alias for Tls server with version 1.2.

Definition at line 39 of file tls_context.h.

◆ Tls13VersionClient

Type alias for Tls client with version 1.3.

Definition at line 34 of file tls_context.h.

◆ Tls13VersionServer

Type alias for Tls server with version 1.3.

Definition at line 44 of file tls_context.h.

Constructor & Destructor Documentation

◆ TlsContext() [1/6]

boost_support::socket::tls::TlsContext::TlsContext ( Tls12VersionClient  client,
std::string_view  ca_certification_path 
)
noexcept

Constructs an instance of TlsContext.

Parameters
[in]clientThe Tls 1.2 version client
[in]ca_certification_pathThe path to root CA certificate

Definition at line 135 of file tls_context.cpp.

136  : ssl_context_{boost::asio::ssl::context::tlsv12_client} {
137  // Load the root CA certificates
138  ssl_context_.load_verify_file(std::string{ca_certification_path});
139  // Load the cipher suites
140  if (SSL_CTX_set_cipher_list(ssl_context_.native_handle(),
141  ConvertCipherListToString(client.cipher_suites).c_str()) == 0) {
142  // Failure
143  }
144 }
SslContext ssl_context_
Store the boost ssl context.
Definition: tls_context.h:121
auto ConvertCipherListToString(std::initializer_list< CipherType > ciphers) noexcept -> std::string

◆ TlsContext() [2/6]

boost_support::socket::tls::TlsContext::TlsContext ( Tls13VersionClient  client,
std::string_view  ca_certification_path 
)
noexcept

Constructs an instance of TlsContext.

Parameters
[in]clientThe Tls 1.2 version client
[in]ca_certification_pathThe path to root CA certificate

Definition at line 146 of file tls_context.cpp.

147  : ssl_context_{boost::asio::ssl::context::tlsv13_client} {
148  // Load the root CA certificates
149  ssl_context_.load_verify_file(std::string{ca_certification_path});
150  // Load the cipher suites
151  if (SSL_CTX_set_ciphersuites(ssl_context_.native_handle(),
152  ConvertCipherListToString(client.cipher_suites).c_str()) == 0) {
153  // Failure
154  }
155 }

◆ TlsContext() [3/6]

boost_support::socket::tls::TlsContext::TlsContext ( Tls12VersionServer  server,
std::string_view  certificate_path,
std::string_view  private_key_path 
)
noexcept

Constructs an instance of TlsContext.

Parameters
[in]serverThe Tls 1.2 version server
[in]certificate_pathThe path to root CA certificate
[in]private_key_pathThe path to private key

Definition at line 157 of file tls_context.cpp.

159  : ssl_context_{boost::asio::ssl::context::tlsv12_server} {
160  // Load certificate and private key from provided locations
161  ssl_context_.use_certificate_chain_file(std::string{certificate_path});
162  ssl_context_.use_private_key_file(std::string{private_key_path}, boost::asio::ssl::context::pem);
163  // Load the cipher suites
164  if (SSL_CTX_set_ciphersuites(ssl_context_.native_handle(),
165  ConvertCipherListToString(server.cipher_suites).c_str()) == 0) {
166  // Failure
167  }
168 }

◆ TlsContext() [4/6]

boost_support::socket::tls::TlsContext::TlsContext ( Tls13VersionServer  server,
std::string_view  certificate_path,
std::string_view  private_key_path 
)
noexcept

Constructs an instance of TlsContext.

Parameters
[in]serverThe Tls 1.2 version server
[in]certificate_pathThe path to root CA certificate
[in]private_key_pathThe path to private key

Definition at line 170 of file tls_context.cpp.

172  : ssl_context_{boost::asio::ssl::context::tlsv13_server} {
173  // Load certificate and private key from provided locations
174  ssl_context_.use_certificate_chain_file(std::string{certificate_path});
175  ssl_context_.use_private_key_file(std::string{private_key_path}, boost::asio::ssl::context::pem);
176  // Load the cipher suites
177  if (SSL_CTX_set_ciphersuites(ssl_context_.native_handle(),
178  ConvertCipherListToString(server.cipher_suites).c_str()) == 0) {
179  // Failure
180  }
181 }

◆ TlsContext() [5/6]

boost_support::socket::tls::TlsContext::TlsContext ( const TlsContext other)
deletenoexcept

Deleted copy assignment and copy constructor.

◆ TlsContext() [6/6]

boost_support::socket::tls::TlsContext::TlsContext ( TlsContext &&  other)
defaultnoexcept

Defaulted move assignment and move constructor.

◆ ~TlsContext()

boost_support::socket::tls::TlsContext::~TlsContext ( )
defaultnoexcept

Destruct an instance of TcpSocket.

Member Function Documentation

◆ GetContext()

SslContext& boost_support::socket::tls::TlsContext::GetContext ( )
inlinenoexcept

Function to get the ssl context reference.

Returns
The reference to ssl context

Definition at line 115 of file tls_context.h.

115 { return ssl_context_; }

References ssl_context_.

◆ operator=() [1/2]

TlsContext& boost_support::socket::tls::TlsContext::operator= ( const TlsContext other)
deletenoexcept

◆ operator=() [2/2]

TlsContext& boost_support::socket::tls::TlsContext::operator= ( TlsContext &&  other)
defaultnoexcept

Member Data Documentation

◆ ssl_context_

SslContext boost_support::socket::tls::TlsContext::ssl_context_
private

Store the boost ssl context.

Definition at line 121 of file tls_context.h.

Referenced by GetContext().


The documentation for this class was generated from the following files: