Botan 1.10.17
Botan::HandshakeMessage Class Referenceabstract

#include <tls_messages.h>

Inheritance diagram for Botan::HandshakeMessage:
Botan::Certificate Botan::Certificate_Req Botan::Certificate_Verify Botan::Client_Hello Botan::Client_Key_Exchange Botan::Finished Botan::Hello_Request Botan::Server_Hello Botan::Server_Hello_Done Botan::Server_Key_Exchange

Public Member Functions

void send (Record_Writer &, HandshakeHash &) const
virtual Handshake_Type type () const =0
virtual ~HandshakeMessage ()

Detailed Description

TLS Handshake Message Base Class

Definition at line 24 of file tls_messages.h.

Constructor & Destructor Documentation

◆ ~HandshakeMessage()

virtual Botan::HandshakeMessage::~HandshakeMessage ( )
inlinevirtual

Definition at line 31 of file tls_messages.h.

31{}

Member Function Documentation

◆ send()

void Botan::HandshakeMessage::send ( Record_Writer & writer,
HandshakeHash & hash ) const

Definition at line 16 of file hello.cpp.

17 {
18 SecureVector<byte> buf = serialize();
19 SecureVector<byte> send_buf(4);
20
21 const size_t buf_size = buf.size();
22
23 send_buf[0] = type();
24
25 for(size_t i = 1; i != 4; ++i)
26 send_buf[i] = get_byte<u32bit>(i, buf_size);
27
28 send_buf += buf;
29
30 hash.update(send_buf);
31
32 writer.send(HANDSHAKE, &send_buf[0], send_buf.size());
33 writer.flush();
34 }
virtual Handshake_Type type() const =0
byte get_byte(size_t byte_num, T input)
Definition get_byte.h:21
@ HANDSHAKE
Definition tls_magic.h:36

References Botan::Record_Writer::flush(), Botan::get_byte(), Botan::HANDSHAKE, Botan::Record_Writer::send(), Botan::MemoryRegion< T >::size(), type(), and Botan::HandshakeHash::update().

Referenced by Botan::Certificate::Certificate(), Botan::Certificate_Req::Certificate_Req(), Botan::Certificate_Verify::Certificate_Verify(), Botan::Client_Hello::Client_Hello(), Botan::Client_Key_Exchange::Client_Key_Exchange(), Botan::Finished::Finished(), Botan::Hello_Request::Hello_Request(), Botan::Server_Hello::Server_Hello(), Botan::Server_Hello_Done::Server_Hello_Done(), and Botan::Server_Key_Exchange::Server_Key_Exchange().

◆ type()


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