add all
This commit is contained in:
47
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/LazyASN1InputStream.cs
vendored
Normal file
47
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/asn1/LazyASN1InputStream.cs
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Asn1
|
||||
{
|
||||
public class LazyAsn1InputStream
|
||||
: Asn1InputStream
|
||||
{
|
||||
public LazyAsn1InputStream(byte[] input)
|
||||
: base(input)
|
||||
{
|
||||
}
|
||||
|
||||
public LazyAsn1InputStream(Stream inputStream)
|
||||
: base(inputStream)
|
||||
{
|
||||
}
|
||||
|
||||
internal LazyAsn1InputStream(Stream input, int limit, byte[][] tmpBuffers)
|
||||
: base(input, limit, tmpBuffers)
|
||||
{
|
||||
}
|
||||
|
||||
internal override Asn1Sequence CreateDLSequence(DefiniteLengthInputStream defIn)
|
||||
{
|
||||
return new LazyDLSequence(defIn.ToArray());
|
||||
}
|
||||
|
||||
internal override Asn1Set CreateDLSet(DefiniteLengthInputStream defIn)
|
||||
{
|
||||
return new LazyDLSet(defIn.ToArray());
|
||||
}
|
||||
|
||||
internal override Asn1EncodableVector ReadVector(DefiniteLengthInputStream defIn)
|
||||
{
|
||||
int remaining = defIn.Remaining;
|
||||
if (remaining < 1)
|
||||
return new Asn1EncodableVector(0);
|
||||
|
||||
return new LazyAsn1InputStream(defIn, remaining, tmpBuffers).ReadVector();
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user