init commit
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
using System.IO;
|
||||
|
||||
namespace Org.BouncyCastle.Asn1;
|
||||
|
||||
public class DerSetGenerator : DerGenerator
|
||||
{
|
||||
private readonly MemoryStream _bOut = new MemoryStream();
|
||||
|
||||
public DerSetGenerator(Stream outStream)
|
||||
: base(outStream)
|
||||
{
|
||||
}
|
||||
|
||||
public DerSetGenerator(Stream outStream, int tagNo, bool isExplicit)
|
||||
: base(outStream, tagNo, isExplicit)
|
||||
{
|
||||
}
|
||||
|
||||
public override void AddObject(Asn1Encodable obj)
|
||||
{
|
||||
new DerOutputStream(_bOut).WriteObject(obj);
|
||||
}
|
||||
|
||||
public override Stream GetRawOutputStream()
|
||||
{
|
||||
return _bOut;
|
||||
}
|
||||
|
||||
public override void Close()
|
||||
{
|
||||
WriteDerEncoded(49, _bOut.ToArray());
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user