12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- 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());
- }
- }
- }
- #endif
|