blob: 2b120aafd3e8a416d0c7d859fa4d257b66fd0304 (
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
43
|
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 CreateDLSequence(DefiniteLengthInputStream dIn)
{
return new LazyDLSequence(dIn.ToArray());
}
internal override DerSet CreateDLSet(DefiniteLengthInputStream dIn)
{
return new LazyDLSet(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();
}
}
}
|