34 lines
594 B
C#
34 lines
594 B
C#
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());
|
|
}
|
|
}
|