You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.9 KiB
77 lines
1.9 KiB
1 year ago
|
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||
|
#pragma warning disable
|
||
|
using System;
|
||
|
|
||
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.IO;
|
||
|
|
||
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls
|
||
|
{
|
||
|
public sealed class ByteQueueInputStream
|
||
|
: BaseInputStream
|
||
|
{
|
||
|
private readonly ByteQueue m_buffer;
|
||
|
|
||
|
public ByteQueueInputStream()
|
||
|
{
|
||
|
this.m_buffer = new ByteQueue();
|
||
|
}
|
||
|
|
||
|
public void AddBytes(byte[] buf)
|
||
|
{
|
||
|
m_buffer.AddData(buf, 0, buf.Length);
|
||
|
}
|
||
|
|
||
|
public void AddBytes(byte[] buf, int bufOff, int bufLen)
|
||
|
{
|
||
|
m_buffer.AddData(buf, bufOff, bufLen);
|
||
|
}
|
||
|
|
||
|
public int Peek(byte[] buf)
|
||
|
{
|
||
|
int bytesToRead = System.Math.Min(m_buffer.Available, buf.Length);
|
||
|
m_buffer.Read(buf, 0, bytesToRead, 0);
|
||
|
return bytesToRead;
|
||
|
}
|
||
|
|
||
|
public override int ReadByte()
|
||
|
{
|
||
|
if (m_buffer.Available == 0)
|
||
|
return -1;
|
||
|
|
||
|
return m_buffer.RemoveData(1, 0)[0];
|
||
|
}
|
||
|
|
||
|
public override int Read(byte[] buf, int off, int len)
|
||
|
{
|
||
|
int bytesToRead = System.Math.Min(m_buffer.Available, len);
|
||
|
m_buffer.RemoveData(buf, off, bytesToRead, 0);
|
||
|
return bytesToRead;
|
||
|
}
|
||
|
|
||
|
public long Skip(long n)
|
||
|
{
|
||
|
int bytesToRemove = System.Math.Min((int)n, m_buffer.Available);
|
||
|
m_buffer.RemoveData(bytesToRemove);
|
||
|
return bytesToRemove;
|
||
|
}
|
||
|
|
||
|
public int Available
|
||
|
{
|
||
|
get { return m_buffer.Available; }
|
||
|
}
|
||
|
|
||
|
#if PORTABLE || NETFX_CORE
|
||
|
//protected override void Dispose(bool disposing)
|
||
|
//{
|
||
|
// base.Dispose(disposing);
|
||
|
//}
|
||
|
#else
|
||
|
public override void Close()
|
||
|
{
|
||
|
}
|
||
|
#endif
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|