32 lines
883 B
C#
32 lines
883 B
C#
using System;
|
|
using System.IO;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1
|
|
{
|
|
// Token: 0x02001D8C RID: 7564
|
|
[Token(Token = "0x2001D8C")]
|
|
public class BerSetGenerator : BerGenerator
|
|
{
|
|
// Token: 0x0600BF76 RID: 49014 RVA: 0x002B9A68 File Offset: 0x002B7C68
|
|
[Token(Token = "0x600BF76")]
|
|
[Address(RVA = "0x26464B0", Offset = "0x26452B0", VA = "0x1826464B0")]
|
|
public BerSetGenerator(Stream outStream)
|
|
{
|
|
this._out = outStream;
|
|
base.WriteBerHeader(49);
|
|
}
|
|
|
|
// Token: 0x0600BF77 RID: 49015 RVA: 0x002B9A8C File Offset: 0x002B7C8C
|
|
[Token(Token = "0x600BF77")]
|
|
[Address(RVA = "0x2646450", Offset = "0x2645250", VA = "0x182646450")]
|
|
public BerSetGenerator(Stream outStream, int tagNo, bool isExplicit)
|
|
{
|
|
this._out = outStream;
|
|
this._isExplicit = isExplicit;
|
|
this._tagNo = tagNo;
|
|
base.WriteBerHeader(49);
|
|
}
|
|
}
|
|
}
|