blob: 1c44554d383fdfcde291d46ed740851a44bd0f28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* TLS Handshake Message
* (C) 2012 Jack Lloyd
*
* Released under the terms of the Botan license
*/
#ifndef BOTAN_TLS_HANDSHAKE_MSG_H__
#define BOTAN_TLS_HANDSHAKE_MSG_H__
#include <botan/tls_magic.h>
#include <vector>
#include <string>
namespace Botan {
namespace TLS {
/**
* TLS Handshake Message Base Class
*/
class BOTAN_DLL Handshake_Message
{
public:
virtual Handshake_Type type() const = 0;
virtual std::vector<byte> serialize() const = 0;
virtual ~Handshake_Message() {}
};
}
}
#endif
|