This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,31 @@
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);
}
}
}