scripts
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
|
||||
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1
|
||||
{
|
||||
// Token: 0x020017AF RID: 6063
|
||||
[Token(Token = "0x20017AF")]
|
||||
[StructLayout(3)]
|
||||
public class BerSetGenerator : BerGenerator
|
||||
{
|
||||
// Token: 0x0600A39C RID: 41884 RVA: 0x002615D0 File Offset: 0x0025F7D0
|
||||
[Token(Token = "0x600A39C")]
|
||||
[Address(RVA = "0x267E280", Offset = "0x267CC80", VA = "0x18267E280")]
|
||||
public BerSetGenerator(Stream outStream)
|
||||
{
|
||||
this._out = outStream;
|
||||
base.WriteBerHeader(49);
|
||||
}
|
||||
|
||||
// Token: 0x0600A39D RID: 41885 RVA: 0x002615F4 File Offset: 0x0025F7F4
|
||||
[Token(Token = "0x600A39D")]
|
||||
[Address(RVA = "0x267E220", Offset = "0x267CC20", VA = "0x18267E220")]
|
||||
public BerSetGenerator(Stream outStream, int tagNo, bool isExplicit)
|
||||
{
|
||||
this._out = outStream;
|
||||
this._isExplicit = isExplicit;
|
||||
this._tagNo = tagNo;
|
||||
base.WriteBerHeader(49);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user