init commit
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
using System.IO;
|
||||
|
||||
namespace Org.BouncyCastle.Asn1;
|
||||
|
||||
public class LazyAsn1InputStream : Asn1InputStream
|
||||
{
|
||||
public LazyAsn1InputStream(byte[] input)
|
||||
: base(input)
|
||||
{
|
||||
}
|
||||
|
||||
public LazyAsn1InputStream(Stream inputStream)
|
||||
: base(inputStream)
|
||||
{
|
||||
}
|
||||
|
||||
internal override DerSequence CreateDerSequence(DefiniteLengthInputStream dIn)
|
||||
{
|
||||
return new LazyDerSequence(dIn.ToArray());
|
||||
}
|
||||
|
||||
internal override DerSet CreateDerSet(DefiniteLengthInputStream dIn)
|
||||
{
|
||||
return new LazyDerSet(dIn.ToArray());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user