blob: 6e56917d64987504cc97e32ae17db8ab6a9583aa (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/*
* Next Protocol Negotiation
* (C) 2012 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/
#include <botan/internal/tls_messages.h>
#include <botan/internal/tls_extensions.h>
#include <botan/internal/tls_reader.h>
#include <botan/internal/tls_handshake_io.h>
namespace Botan {
namespace TLS {
Next_Protocol::Next_Protocol(Handshake_IO& io,
Handshake_Hash& hash,
const std::string& protocol) :
m_protocol(protocol)
{
hash.update(io.send(*this));
}
Next_Protocol::Next_Protocol(const std::vector<byte>& buf)
{
TLS_Data_Reader reader("NextProtocol", buf);
m_protocol = reader.get_string(1, 0, 255);
reader.get_range_vector<byte>(1, 0, 255); // padding, ignored
}
std::vector<byte> Next_Protocol::serialize() const
{
std::vector<byte> buf;
append_tls_length_value(buf,
reinterpret_cast<const byte*>(m_protocol.data()),
m_protocol.size(),
1);
const byte padding_len = 32 - ((m_protocol.size() + 2) % 32);
buf.push_back(padding_len);
for(size_t i = 0; i != padding_len; ++i)
buf.push_back(0);
return buf;
}
}
}
|