blob: 8112b2a1142f5dec1c49bb352c160c18fa9fdadc (
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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/*
* TLS Protocol Version Management
* (C) 2012 Jack Lloyd
*
* Released under the terms of the Botan license
*/
#ifndef BOTAN_TLS_PROTOCOL_VERSION_H__
#define BOTAN_TLS_PROTOCOL_VERSION_H__
#include <botan/get_byte.h>
#include <string>
namespace Botan {
namespace TLS {
/**
* TLS Protocol Version
*/
class BOTAN_DLL Protocol_Version
{
public:
enum Version_Code {
SSL_V3 = 0x0300,
TLS_V10 = 0x0301,
TLS_V11 = 0x0302,
TLS_V12 = 0x0303,
DTLS_V10 = 0xFEFF,
DTLS_V12 = 0xFEFD
};
Protocol_Version() : m_version(0) {}
/**
* @param named_version a specific named version of the protocol
*/
Protocol_Version(Version_Code named_version) :
m_version(static_cast<u16bit>(named_version)) {}
/**
* @param major the major version
* @param minor the minor version
*/
Protocol_Version(byte major, byte minor) :
m_version((static_cast<u16bit>(major) << 8) | minor) {}
/**
* @return true if this is a valid protocol version
*/
bool valid() const { return (m_version != 0); }
/**
* @return true if this is a protocol version we know about
*/
bool known_version() const;
/**
* @return major version of the protocol version
*/
byte major_version() const { return get_byte(0, m_version); }
/**
* @return minor version of the protocol version
*/
byte minor_version() const { return get_byte(1, m_version); }
/**
* @return human-readable description of this version
*/
std::string to_string() const;
/**
* If this version is known, return that. Otherwise return the
* best (most recent) version we know of.
* @return best matching protocol version
*/
Protocol_Version best_known_match() const;
/**
* @return true iff this is a DTLS version
*/
bool is_datagram_protocol() const;
/**
* @return true if this version supports negotiable signature algorithms
*/
bool supports_negotiable_signature_algorithms() const;
/**
* @return true if this version uses explicit IVs for block ciphers
*/
bool supports_explicit_cbc_ivs() const;
/**
* @return if this version is equal to other
*/
bool operator==(const Protocol_Version& other) const
{
return (m_version == other.m_version);
}
/**
* @return if this version is not equal to other
*/
bool operator!=(const Protocol_Version& other) const
{
return (m_version != other.m_version);
}
/**
* @return if this version is later than other
*/
bool operator>(const Protocol_Version& other) const;
private:
u16bit m_version;
};
}
}
#endif
|