Diag-Client-Lib
tls_cipher_list.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_INCLUDE_BOOST_SUPPORT_CLIENT_TLS_TLS_CIPHER_LIST_H_
9 #define DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_CLIENT_TLS_TLS_CIPHER_LIST_H_
10 
11 #include <cstdint>
12 
13 namespace boost_support {
14 namespace client {
15 namespace tls {
16 
20 enum class Tls12CipherSuites : std::uint16_t {
26 };
27 
31 enum class Tls13CipherSuites : std::uint16_t {
37 };
38 
39 } // namespace tls
40 } // namespace client
41 } // namespace boost_support
42 #endif // DIAG_CLIENT_LIB_LIB_BOOST_SUPPORT_INCLUDE_BOOST_SUPPORT_CLIENT_TLS_TLS_CIPHER_LIST_H_
Tls13CipherSuites
The TLS 1.3 cipher suites supported.
Tls12CipherSuites
The TLS 1.2 cipher suites supported.