Botan 3.13.0
Crypto and TLS for C&
Botan::TLS::Certificate_13::Certificate_Entry Class Reference

#include <tls_messages_13.h>

Public Member Functions

const X509_Certificatecertificate () const
 Certificate_Entry (Certificate_Entry &&other) noexcept
 Certificate_Entry (const Certificate_Entry &other)=delete
 Certificate_Entry (const X509_Certificate &cert)
 Certificate_Entry (std::shared_ptr< Public_Key > raw_public_key)
 Certificate_Entry (TLS_Data_Reader &reader, Connection_Side side, Certificate_Type cert_type)
Extensionsextensions ()
const Extensionsextensions () const
bool has_certificate () const
Certificate_Entryoperator= (Certificate_Entry &&other) noexcept
Certificate_Entryoperator= (const Certificate_Entry &other)=delete
std::shared_ptr< const Public_Keypublic_key () const
std::vector< uint8_t > serialize () const
 ~Certificate_Entry ()

Detailed Description

Definition at line 179 of file tls_messages_13.h.

Constructor & Destructor Documentation

◆ Certificate_Entry() [1/5]

Botan::TLS::Certificate_13::Certificate_Entry::Certificate_Entry ( TLS_Data_Reader & reader,
Connection_Side side,
Certificate_Type cert_type )

Definition at line 276 of file msg_certificate_13.cpp.

278 {
279 if(cert_type == Certificate_Type::X509) {
280 // RFC 8446 4.2.2
281 // [...] each CertificateEntry contains a DER-encoded X.509
282 // certificate.
283 const auto cert_bytes = reader.get_tls_length_value(3);
284 try {
285 m_certificate = std::make_unique<X509_Certificate>(cert_bytes);
286 m_raw_public_key = m_certificate->subject_public_key();
287 } catch(Exception& e) {
288 // bad_certificate would make more sense but BoGo expects decoding_error
289 throw TLS_Exception(Alert::DecodeError, e.what());
290 }
291 } else if(cert_type == Certificate_Type::RawPublicKey) {
292 // RFC 7250 3.
293 // This specification uses raw public keys whereby the already
294 // available encoding used in a PKIX certificate in the form of a
295 // SubjectPublicKeyInfo structure is reused.
296 try {
297 m_raw_public_key = X509::load_key(reader.get_tls_length_value(3));
298 } catch(Exception& e) {
299 throw TLS_Exception(Alert::DecodeError, e.what());
300 }
301 } else {
302 throw TLS_Exception(Alert::InternalError, "Unknown certificate type");
303 }
304
305 // Extensions are simply tacked at the end of the certificate entry. This
306 // is a departure from the typical "tag-length-value" in a sense that the
307 // Extensions deserializer needs the length value of the extensions.
308 const size_t extensions_length = reader.peek_uint16_t();
309 const auto exts_buf = reader.get_fixed<uint8_t>(extensions_length + 2);
310 TLS_Data_Reader exts_reader("extensions reader", exts_buf);
311 m_extensions.deserialize(exts_reader, side, Handshake_Type::Certificate);
312
313 if(cert_type == Certificate_Type::X509) {
314 // RFC 8446 4.4.2
315 // Valid extensions for server certificates at present include the
316 // OCSP Status extension [RFC6066] and the SignedCertificateTimestamp
317 // extension [RFC6962]; future extensions may be defined for this
318 // message as well.
319 //
320 // RFC 8446 4.4.2.1
321 // A server MAY request that a client present an OCSP response with its
322 // certificate by sending an empty "status_request" extension in its
323 // CertificateRequest message.
324 if(m_extensions.contains_implemented_extensions_other_than({
325 Extension_Code::CertificateStatusRequest,
326 // Extension_Code::SignedCertificateTimestamp
327 })) {
328 throw TLS_Exception(Alert::IllegalParameter, "Certificate Entry contained an extension that is not allowed");
329 }
330 } else if(m_extensions.contains_implemented_extensions_other_than({})) {
331 throw TLS_Exception(
332 Alert::IllegalParameter,
333 "Certificate Entry holding something else than a certificate contained unexpected extensions");
334 }
335}
std::unique_ptr< Public_Key > load_key(DataSource &source)
Definition x509_key.cpp:28

References Botan::TLS::Certificate, Certificate_Entry(), Botan::TLS::TLS_Data_Reader::get_fixed(), Botan::TLS::TLS_Data_Reader::get_tls_length_value(), Botan::X509::load_key(), Botan::TLS::TLS_Data_Reader::peek_uint16_t(), Botan::TLS::RawPublicKey, Botan::Exception::what(), and Botan::TLS::X509.

Referenced by Certificate_Entry(), Certificate_Entry(), Certificate_Entry(), Certificate_Entry(), operator=(), and operator=().

◆ Certificate_Entry() [2/5]

Botan::TLS::Certificate_13::Certificate_Entry::Certificate_Entry ( const X509_Certificate & cert)
explicit

Definition at line 343 of file msg_certificate_13.cpp.

343 :
344 m_certificate(std::make_unique<X509_Certificate>(cert)), m_raw_public_key(m_certificate->subject_public_key()) {}

References Certificate_Entry().

◆ Certificate_Entry() [3/5]

Botan::TLS::Certificate_13::Certificate_Entry::Certificate_Entry ( std::shared_ptr< Public_Key > raw_public_key)
explicit

Definition at line 346 of file msg_certificate_13.cpp.

346 :
347 m_raw_public_key(std::move(raw_public_key)) {
348 BOTAN_ASSERT_NONNULL(m_raw_public_key);
349}
#define BOTAN_ASSERT_NONNULL(ptr)
Definition assert.h:114

References BOTAN_ASSERT_NONNULL.

◆ Certificate_Entry() [4/5]

Botan::TLS::Certificate_13::Certificate_Entry::Certificate_Entry ( const Certificate_Entry & other)
delete

References Certificate_Entry().

◆ Certificate_Entry() [5/5]

Botan::TLS::Certificate_13::Certificate_Entry::Certificate_Entry ( Certificate_Entry && other)
defaultnoexcept

References Certificate_Entry().

◆ ~Certificate_Entry()

Botan::TLS::Certificate_13::Certificate_Entry::~Certificate_Entry ( )
default

Member Function Documentation

◆ certificate()

const X509_Certificate & Botan::TLS::Certificate_13::Certificate_Entry::certificate ( ) const

Definition at line 351 of file msg_certificate_13.cpp.

351 {
353 return *m_certificate;
354}
#define BOTAN_STATE_CHECK(expr)
Definition assert.h:49
bool has_certificate() const

References BOTAN_STATE_CHECK, and has_certificate().

◆ extensions() [1/2]

Extensions & Botan::TLS::Certificate_13::Certificate_Entry::extensions ( )
inline

Definition at line 192 of file tls_messages_13.h.

192{ return m_extensions; }

◆ extensions() [2/2]

const Extensions & Botan::TLS::Certificate_13::Certificate_Entry::extensions ( ) const
inline

Definition at line 194 of file tls_messages_13.h.

194{ return m_extensions; }

◆ has_certificate()

bool Botan::TLS::Certificate_13::Certificate_Entry::has_certificate ( ) const
inline

Definition at line 185 of file tls_messages_13.h.

185{ return m_certificate != nullptr; }

Referenced by certificate(), and serialize().

◆ operator=() [1/2]

Certificate_13::Certificate_Entry & Botan::TLS::Certificate_13::Certificate_Entry::operator= ( Certificate_Entry && other)
defaultnoexcept

References Certificate_Entry().

◆ operator=() [2/2]

Certificate_Entry & Botan::TLS::Certificate_13::Certificate_Entry::operator= ( const Certificate_Entry & other)
delete

References Certificate_Entry().

◆ public_key()

std::shared_ptr< const Public_Key > Botan::TLS::Certificate_13::Certificate_Entry::public_key ( ) const

Definition at line 356 of file msg_certificate_13.cpp.

356 {
357 BOTAN_ASSERT_NONNULL(m_raw_public_key);
358 return m_raw_public_key;
359}

References BOTAN_ASSERT_NONNULL.

◆ serialize()

std::vector< uint8_t > Botan::TLS::Certificate_13::Certificate_Entry::serialize ( ) const

Definition at line 361 of file msg_certificate_13.cpp.

361 {
362 return (has_certificate()) ? m_certificate->BER_encode() : X509::BER_encode(*m_raw_public_key);
363}
std::vector< uint8_t > BER_encode(const Public_Key &key)
Definition x509_key.h:24

References Botan::X509::BER_encode(), and has_certificate().


The documentation for this class was generated from the following files: