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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/**
* TLS Record Handling
* (C) 2004-2010 Jack Lloyd
*
* Released under the terms of the Botan license
*/
#ifndef BOTAN_TLS_RECORDS_H__
#define BOTAN_TLS_RECORDS_H__
#include <botan/tls_session_key.h>
#include <botan/socket.h>
#include <botan/tls_suites.h>
#include <botan/pipe.h>
#include <botan/secqueue.h>
#include <vector>
namespace Botan {
/**
* TLS Record Writer
*/
class BOTAN_DLL Record_Writer
{
public:
void send(byte, const byte[], u32bit);
void send(byte, byte);
void flush();
void alert(Alert_Level, Alert_Type);
void set_keys(const CipherSuite&, const SessionKeys&, Connection_Side);
void set_version(Version_Code);
void reset();
Record_Writer(Socket& socket);
private:
void send_record(byte, const byte[], u32bit);
void send_record(byte, byte, byte, const byte[], u32bit);
Socket& socket;
Pipe cipher, mac;
SecureVector<byte> buffer;
u32bit pad_amount, mac_size, buf_pos;
u64bit seq_no;
byte major, minor, buf_type;
};
/**
* TLS Record Reader
*/
class BOTAN_DLL Record_Reader
{
public:
void add_input(const byte input[], u32bit input_size);
/**
* @param msg_type (output variable)
* @param buffer (output variable)
* @return Number of bytes still needed (minimum), or 0 if success
*/
u32bit get_record(byte& msg_type,
MemoryRegion<byte>& buffer);
SecureVector<byte> get_record(byte& msg_type);
void set_keys(const CipherSuite& suite,
const SessionKeys& keys,
Connection_Side side);
void set_version(Version_Code version);
void reset();
Record_Reader() { reset(); }
private:
SecureQueue input_queue;
Pipe cipher, mac;
u32bit pad_amount, mac_size;
u64bit seq_no;
byte major, minor;
};
}
#endif
|