blob: 7935bc85ac630b107ea6c27aad7c364ff57ee4c3 (
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
|
using System;
using System.IO;
namespace Org.BouncyCastle.Asn1
{
/// <remarks>No longer provides any laziness.</remarks>
[Obsolete("Will be removed")]
public class LazyAsn1InputStream
: Asn1InputStream
{
public LazyAsn1InputStream(byte[] input)
: base(input)
{
}
public LazyAsn1InputStream(Stream inputStream)
: base(inputStream)
{
}
public LazyAsn1InputStream(Stream input, int limit)
: base(input, limit)
{
}
public LazyAsn1InputStream(Stream input, int limit, bool leaveOpen)
: base(input, limit, leaveOpen)
{
}
}
}
|