12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- #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
|