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
|
using System;
using System.IO;
using Org.BouncyCastle.Utilities;
namespace Org.BouncyCastle.Tls
{
internal sealed class HandshakeMessageOutput
: MemoryStream
{
internal static int GetLength(int bodyLength)
{
return 4 + bodyLength;
}
/// <exception cref="IOException"/>
internal static void Send(TlsProtocol protocol, short handshakeType, byte[] body)
{
HandshakeMessageOutput message = new HandshakeMessageOutput(handshakeType, body.Length);
message.Write(body, 0, body.Length);
message.Send(protocol);
}
/// <exception cref="IOException"/>
internal HandshakeMessageOutput(short handshakeType)
: this(handshakeType, 60)
{
}
/// <exception cref="IOException"/>
internal HandshakeMessageOutput(short handshakeType, int bodyLength)
: base(GetLength(bodyLength))
{
TlsUtilities.CheckUint8(handshakeType);
TlsUtilities.WriteUint8(handshakeType, this);
// Reserve space for length
Seek(3L, SeekOrigin.Current);
}
/// <exception cref="IOException"/>
internal void Send(TlsProtocol protocol)
{
// Patch actual length back in
int bodyLength = (int)Length - 4;
TlsUtilities.CheckUint24(bodyLength);
Seek(1L, SeekOrigin.Begin);
TlsUtilities.WriteUint24(bodyLength, this);
#if PORTABLE
byte[] buf = ToArray();
int count = buf.Length;
#else
byte[] buf = GetBuffer();
int count = (int)Length;
#endif
protocol.WriteHandshakeMessage(buf, 0, count);
Platform.Dispose(this);
}
internal void PrepareClientHello(TlsHandshakeHash handshakeHash, int bindersSize)
{
// Patch actual length back in
int bodyLength = (int)Length - 4 + bindersSize;
TlsUtilities.CheckUint24(bodyLength);
Seek(1L, SeekOrigin.Begin);
TlsUtilities.WriteUint24(bodyLength, this);
#if PORTABLE
byte[] buf = ToArray();
int count = buf.Length;
#else
byte[] buf = GetBuffer();
int count = (int)Length;
#endif
handshakeHash.Update(buf, 0, count);
Seek(0L, SeekOrigin.End);
}
internal void SendClientHello(TlsClientProtocol clientProtocol, TlsHandshakeHash handshakeHash, int bindersSize)
{
#if PORTABLE
byte[] buf = ToArray();
int count = buf.Length;
#else
byte[] buf = GetBuffer();
int count = (int)Length;
#endif
if (bindersSize > 0)
{
handshakeHash.Update(buf, count - bindersSize, bindersSize);
}
clientProtocol.WriteHandshakeMessage(buf, 0, count);
Platform.Dispose(this);
}
}
}
|