8#ifndef BOTAN_TLS_CIPHER_SUITES_H_
9#define BOTAN_TLS_CIPHER_SUITES_H_
11#include <botan/tls_algos.h>
12#include <botan/tls_version.h>
13#include <botan/types.h>
32 static std::optional<Ciphersuite> by_id(uint16_t suite);
39 static std::optional<Ciphersuite> from_name(std::string_view
name);
44 static bool is_scsv(uint16_t suite);
51 static const std::vector<Ciphersuite>& all_known_ciphersuites();
57 std::string
to_string()
const {
return (!m_iana_id) ?
"unknown cipher suite" : m_iana_id; }
67 bool psk_ciphersuite()
const;
72 bool ecc_ciphersuite()
const;
77 bool cbc_ciphersuite()
const;
82 bool aead_ciphersuite()
const;
84 bool signature_used()
const;
108 std::string
mac_algo()
const {
return m_mac_algo; }
117 size_t nonce_bytes_from_handshake()
const;
128 bool valid()
const {
return m_usable; }
134 bool operator<(
const uint16_t c)
const {
return ciphersuite_code() < c; }
137 bool is_usable()
const;
143 const char* cipher_algo,
144 size_t cipher_keylen,
145 const char* mac_algo,
149 m_ciphersuite_code(ciphersuite_code),
151 m_auth_method(auth_method),
152 m_kex_algo(kex_algo),
153 m_prf_algo(prf_algo),
154 m_nonce_format(nonce_format),
155 m_cipher_algo(cipher_algo),
156 m_mac_algo(mac_algo),
157 m_cipher_keylen(cipher_keylen),
158 m_mac_keylen(mac_keylen) {
159 m_usable = is_usable();
162 uint16_t m_ciphersuite_code = 0;
168 const char* m_iana_id;
170 Auth_Method m_auth_method;
173 Nonce_Format m_nonce_format;
175 const char* m_cipher_algo;
176 const char* m_mac_algo;
178 size_t m_cipher_keylen;
181 bool m_usable =
false;
uint16_t ciphersuite_code() const
bool operator<(const uint16_t c) const
Auth_Method auth_method() const
Nonce_Format nonce_format() const
std::string to_string() const
size_t mac_keylen() const
size_t cipher_keylen() const
Kex_Algo kex_method() const
std::string kex_algo() const
std::string mac_algo() const
std::string sig_algo() const
std::string prf_algo() const
bool operator<(const Ciphersuite &o) const
std::string cipher_algo() const
int(* final)(unsigned char *, CTX *)
#define BOTAN_PUBLIC_API(maj, min)
std::string kdf_algo_to_string(KDF_Algo algo)
std::string kex_method_to_string(Kex_Algo method)
std::string auth_method_to_string(Auth_Method method)