Botan
1.11.15
|
#include <tls_messages.h>
Public Member Functions | |
Server_Hello_Done (Handshake_IO &io, Handshake_Hash &hash) | |
Server_Hello_Done (const std::vector< byte > &buf) | |
Handshake_Type | type () const override |
Server Hello Done Message
Definition at line 525 of file tls_messages.h.
Botan::TLS::Server_Hello_Done::Server_Hello_Done | ( | Handshake_IO & | io, |
Handshake_Hash & | hash | ||
) |
Definition at line 163 of file msg_server_hello.cpp.
References Botan::TLS::Handshake_IO::send(), and Botan::TLS::Handshake_Hash::update().
{
hash.update(io.send(*this));
}
Botan::TLS::Server_Hello_Done::Server_Hello_Done | ( | const std::vector< byte > & | buf | ) |
Definition at line 172 of file msg_server_hello.cpp.
{ if(buf.size()) throw Decoding_Error("Server_Hello_Done: Must be empty, and is not"); }
Handshake_Type Botan::TLS::Server_Hello_Done::type | ( | ) | const [inline, override, virtual] |
Implements Botan::TLS::Handshake_Message.
Definition at line 528 of file tls_messages.h.
References Botan::TLS::SERVER_HELLO_DONE.
{ return SERVER_HELLO_DONE; }