30 static std::optional<Ciphersuite> by_id(uint16_t suite);
37 static std::optional<Ciphersuite> from_name(std::string_view
name);
42 static bool is_scsv(uint16_t suite);
49 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;