Files
Aug2021-Cpp2IL-Dump/Assembly-CSharp/BestHTTP/SecureProtocol/Org/BouncyCastle/Asn1/BerApplicationSpecificParser.cs
T
2026-04-10 22:50:51 +02:00

51 lines
1.7 KiB
C#

using System;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1
{
// Token: 0x02001D90 RID: 7568
[Token(Token = "0x2001D90")]
public class BerApplicationSpecificParser : IAsn1ApplicationSpecificParser, IAsn1Convertible
{
// Token: 0x0600BF82 RID: 49026 RVA: 0x002B9C30 File Offset: 0x002B7E30
[Token(Token = "0x600BF82")]
[Address(RVA = "0x4E6E10", Offset = "0x4E5C10", VA = "0x1804E6E10")]
internal BerApplicationSpecificParser(int tag, Asn1StreamParser parser)
{
this.tag = tag;
this.parser = parser;
}
// Token: 0x0600BF83 RID: 49027 RVA: 0x002B9C54 File Offset: 0x002B7E54
[Token(Token = "0x600BF83")]
[Address(RVA = "0xEE7CC0", Offset = "0xEE6AC0", VA = "0x180EE7CC0", Slot = "4")]
public IAsn1Convertible ReadObject()
{
Asn1StreamParser asn1StreamParser = this.parser;
throw new NullReferenceException();
}
// Token: 0x0600BF84 RID: 49028 RVA: 0x002B9C70 File Offset: 0x002B7E70
[Token(Token = "0x600BF84")]
[Address(RVA = "0x2644280", Offset = "0x2643080", VA = "0x182644280", Slot = "5")]
public Asn1Object ToAsn1Object()
{
Asn1StreamParser asn1StreamParser = this.parser;
int num = this.tag;
Asn1EncodableVector asn1EncodableVector = asn1StreamParser.ReadVector();
BerApplicationSpecific berApplicationSpecific = new BerApplicationSpecific(num, asn1EncodableVector);
throw new NullReferenceException();
}
// Token: 0x04007991 RID: 31121
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4007991")]
private readonly int tag;
// Token: 0x04007992 RID: 31122
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4007992")]
private readonly Asn1StreamParser parser;
}
}