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.
47 lines
1.2 KiB
47 lines
1.2 KiB
using System;
|
|
using System.IO;
|
|
|
|
namespace 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 DerSequence CreateDerSequence(
|
|
DefiniteLengthInputStream dIn)
|
|
{
|
|
return new LazyDerSequence(dIn.ToArray());
|
|
}
|
|
|
|
internal override DerSet CreateDerSet(
|
|
DefiniteLengthInputStream dIn)
|
|
{
|
|
return new LazyDerSet(dIn.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();
|
|
}
|
|
}
|
|
}
|
|
|