8#ifndef BOTAN_TLS_CIPHER_SUITES_H_
9#define BOTAN_TLS_CIPHER_SUITES_H_
11#include <botan/types.h>
12#include <botan/tls_algos.h>
13#include <botan/tls_version.h>
44 static bool is_scsv(uint16_t suite);
51 static const std::vector<Ciphersuite>& all_known_ciphersuites();
67 bool psk_ciphersuite()
const;
72 bool ecc_ciphersuite()
const;
77 bool cbc_ciphersuite()
const;
79 bool signature_used()
const;
103 std::string
mac_algo()
const {
return m_mac_algo; }
115 size_t nonce_bytes_from_handshake()
const;
126 bool valid()
const {
return m_usable; }
131 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)
160 m_usable = is_usable();
163 uint16_t m_ciphersuite_code = 0;
169 const char* m_iana_id =
nullptr;
176 const char* m_cipher_algo =
nullptr;
177 const char* m_mac_algo =
nullptr;
179 size_t m_cipher_keylen = 0;
180 size_t m_mac_keylen = 0;
182 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)