blob: ecb1f865d690ff48555250c54642cc0e36069d8f (
plain) (
blame)
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
|
using System;
using Org.BouncyCastle.Utilities.IO;
namespace Org.BouncyCastle.Tls
{
/// <summary>OutputStream based on a ByteQueue implementation.</summary>
public sealed class ByteQueueOutputStream
: BaseOutputStream
{
private readonly ByteQueue m_buffer;
public ByteQueueOutputStream()
{
this.m_buffer = new ByteQueue();
}
public ByteQueue Buffer
{
get { return m_buffer; }
}
public override void Write(byte[] buffer, int offset, int count)
{
Streams.ValidateBufferArguments(buffer, offset, count);
m_buffer.AddData(buffer, offset, count);
}
#if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER
public override void Write(ReadOnlySpan<byte> buffer)
{
m_buffer.AddData(buffer);
}
#endif
public override void WriteByte(byte value)
{
m_buffer.AddData(new byte[]{ value }, 0, 1);
}
}
}
|