Diag-Client-Lib
tls_context.h
Go to the documentation of this file.
1 /* Diagnostic Client library
2  * Copyright (C) 2024 Avijit Dey
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
8 #ifndef DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_TLS_TLS_CONTEXT_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_TLS_TLS_CONTEXT_H_
10 
11 #include <boost/asio.hpp>
12 #include <boost/asio/ssl.hpp>
13 
16 
17 namespace boost_support {
18 namespace socket {
19 namespace tls {
20 
24 class TlsContext final {
25  public:
30 
35 
40 
45 
49  using SslContext = boost::asio::ssl::context;
50 
51  public:
59  TlsContext(Tls12VersionClient client, std::string_view ca_certification_path) noexcept;
60 
68  TlsContext(Tls13VersionClient client, std::string_view ca_certification_path) noexcept;
69 
79  TlsContext(Tls12VersionServer server, std::string_view certificate_path,
80  std::string_view private_key_path) noexcept;
81 
91  TlsContext(Tls13VersionServer server, std::string_view certificate_path,
92  std::string_view private_key_path) noexcept;
93 
97  TlsContext(const TlsContext &other) noexcept = delete;
98  TlsContext &operator=(const TlsContext &other) noexcept = delete;
99 
103  TlsContext(TlsContext &&other) noexcept = default;
104  TlsContext &operator=(TlsContext &&other) noexcept = default;
105 
109  ~TlsContext() noexcept = default;
110 
115  SslContext &GetContext() noexcept { return ssl_context_; }
116 
117  private:
122 };
123 } // namespace tls
124 } // namespace socket
125 } // namespace boost_support
126 #endif // DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_SOCKET_TLS_TLS_CONTEXT_H_
Tls context class responsible for setting cipher suite and loading certificates.
Definition: tls_context.h:24
boost::asio::ssl::context SslContext
Type alias for boost ssl context.
Definition: tls_context.h:49
SslContext ssl_context_
Store the boost ssl context.
Definition: tls_context.h:121
TlsContext(TlsContext &&other) noexcept=default
Defaulted move assignment and move constructor.
~TlsContext() noexcept=default
Destruct an instance of TcpSocket.
TlsContext & operator=(const TlsContext &other) noexcept=delete
SslContext & GetContext() noexcept
Function to get the ssl context reference.
Definition: tls_context.h:115
TlsContext(Tls12VersionClient client, std::string_view ca_certification_path) noexcept
Constructs an instance of TlsContext.
TlsContext & operator=(TlsContext &&other) noexcept=default
TlsContext(const TlsContext &other) noexcept=delete
Deleted copy assignment and copy constructor.
TlsVersion< Tls12CipherSuites > TlsVersion12
Strong type for TLS version 1.2.
Definition: tls_version.h:28
TlsVersion< Tls13CipherSuites > TlsVersion13
Strong type for TLS version 1.3.
Definition: tls_version.h:33
detail::TlsVersion< Tls12CipherSuites > TlsVersion12
Strong type for TLS version 1.2.
Definition: tls_version.h:34
detail::TlsVersion< Tls13CipherSuites > TlsVersion13
Strong type for TLS version 1.3.
Definition: tls_version.h:39
Template type for Tls version.
Definition: tls_version.h:26