123456789101112131415161718192021222324252627 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System.IO;
- namespace Org.BouncyCastle.Asn1
- {
- public class BerSetGenerator
- : BerGenerator
- {
- public BerSetGenerator(
- Stream outStream)
- : base(outStream)
- {
- WriteBerHeader(Asn1Tags.Constructed | Asn1Tags.Set);
- }
- public BerSetGenerator(
- Stream outStream,
- int tagNo,
- bool isExplicit)
- : base(outStream, tagNo, isExplicit)
- {
- WriteBerHeader(Asn1Tags.Constructed | Asn1Tags.Set);
- }
- }
- }
- #endif
|