Initial Commit
This commit is contained in:
40
iTechSharp/srcbc/asn1/DERSetGenerator.cs
Normal file
40
iTechSharp/srcbc/asn1/DERSetGenerator.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
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(Asn1Tags.Constructed | Asn1Tags.Set, _bOut.ToArray());
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user