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
|
using System;
using System.IO;
using Org.BouncyCastle.Tls.Crypto;
using Org.BouncyCastle.Utilities.IO;
namespace Org.BouncyCastle.Tls
{
// TODO Rewrite without MemoryStream
public sealed class HandshakeMessageInput
: MemoryStream
{
private readonly int m_offset;
internal HandshakeMessageInput(byte[] buf, int offset, int length)
#if PORTABLE
: base(buf, offset, length, false)
#else
: base(buf, offset, length, false, true)
#endif
{
#if PORTABLE
this.m_offset = 0;
#else
this.m_offset = offset;
#endif
}
public void UpdateHash(TlsHash hash)
{
Streams.WriteBufTo(this, new TlsHashSink(hash));
}
internal void UpdateHashPrefix(TlsHash hash, int bindersSize)
{
#if PORTABLE
byte[] buf = ToArray();
int count = buf.Length;
#else
byte[] buf = GetBuffer();
int count = (int)Length;
#endif
hash.Update(buf, m_offset, count - bindersSize);
}
internal void UpdateHashSuffix(TlsHash hash, int bindersSize)
{
#if PORTABLE
byte[] buf = ToArray();
int count = buf.Length;
#else
byte[] buf = GetBuffer();
int count = (int)Length;
#endif
hash.Update(buf, m_offset + count - bindersSize, bindersSize);
}
}
}
|