diff options
author | lloyd <[email protected]> | 2014-01-10 03:41:59 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-01-10 03:41:59 +0000 |
commit | 6894dca64c04936d07048c0e8cbf7e25858548c3 (patch) | |
tree | 5d572bfde9fe667dab14e3f04b5285a85d8acd95 /src/lib/tls/tls_handshake_msg.h | |
parent | 9efa3be92442afb3d0b69890a36c7f122df18eda (diff) |
Move lib into src
Diffstat (limited to 'src/lib/tls/tls_handshake_msg.h')
-rw-r--r-- | src/lib/tls/tls_handshake_msg.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/lib/tls/tls_handshake_msg.h b/src/lib/tls/tls_handshake_msg.h new file mode 100644 index 000000000..1c44554d3 --- /dev/null +++ b/src/lib/tls/tls_handshake_msg.h @@ -0,0 +1,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 |