This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,120 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509
{
// Token: 0x02001EFB RID: 7931
[Token(Token = "0x2001EFB")]
public class CrlEntry : Asn1Encodable
{
// Token: 0x0600C6F0 RID: 50928 RVA: 0x002CFBCC File Offset: 0x002CDDCC
[Token(Token = "0x600C6F0")]
[Address(RVA = "0x2D89910", Offset = "0x2D88910", VA = "0x182D89910")]
public CrlEntry(Asn1Sequence seq)
{
this.seq = seq;
Asn1SequenceParser parser = seq.Parser;
DerInteger derInteger;
this.userCertificate = derInteger;
Asn1SequenceParser parser2 = seq.Parser;
Time time;
this.revocationDate = time;
}
// Token: 0x17001ECF RID: 7887
// (get) Token: 0x0600C6F1 RID: 50929 RVA: 0x002CFC0C File Offset: 0x002CDE0C
[Token(Token = "0x17001ECF")]
public DerInteger UserCertificate
{
[Token(Token = "0x600C6F1")]
[Address(RVA = "0x4157B0", Offset = "0x4147B0", VA = "0x1804157B0")]
get
{
return this.userCertificate;
}
}
// Token: 0x17001ED0 RID: 7888
// (get) Token: 0x0600C6F2 RID: 50930 RVA: 0x002CFC20 File Offset: 0x002CDE20
[Token(Token = "0x17001ED0")]
public Time RevocationDate
{
[Token(Token = "0x600C6F2")]
[Address(RVA = "0x4157C0", Offset = "0x4147C0", VA = "0x1804157C0")]
get
{
return this.revocationDate;
}
}
// Token: 0x17001ED1 RID: 7889
// (get) Token: 0x0600C6F3 RID: 50931 RVA: 0x002CFC34 File Offset: 0x002CDE34
[Token(Token = "0x17001ED1")]
public X509Extensions Extensions
{
[Token(Token = "0x600C6F3")]
[Address(RVA = "0x2D89A50", Offset = "0x2D88A50", VA = "0x182D89A50")]
get
{
if (this.crlEntryExtensions == (ulong)0L)
{
Asn1Sequence asn1Sequence = this.seq;
Asn1Encodable asn1Encodable;
if (asn1Encodable == (ulong)3L)
{
Asn1SequenceParser parser = this.seq.Parser;
X509Extensions x509Extensions;
this.crlEntryExtensions = x509Extensions;
}
}
return this.crlEntryExtensions;
}
}
// Token: 0x0600C6F4 RID: 50932 RVA: 0x002CFC78 File Offset: 0x002CDE78
[Token(Token = "0x600C6F4")]
[Address(RVA = "0x411530", Offset = "0x410530", VA = "0x180411530", Slot = "5")]
public override Asn1Object ToAsn1Object()
{
/*
An exception occurred when decompiling this method (0600C6F4)
ICSharpCode.Decompiler.DecompilerException: Error decompiling BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Asn1Object BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509.CrlEntry::ToAsn1Object()
---> System.Exception: Basic block has to end with unconditional control flow.
{
Block_0:
stloc:Asn1Sequence(var_0_06, ldfld:Asn1Sequence(CrlEntry::seq, ldloc:CrlEntry(this)))
}
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
--- End of inner exception stack trace ---
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1663
*/;
}
// Token: 0x04007CAF RID: 31919
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4007CAF")]
internal Asn1Sequence seq;
// Token: 0x04007CB0 RID: 31920
[FieldOffset(Offset = "0x18")]
[Token(Token = "0x4007CB0")]
internal DerInteger userCertificate;
// Token: 0x04007CB1 RID: 31921
[FieldOffset(Offset = "0x20")]
[Token(Token = "0x4007CB1")]
internal Time revocationDate;
// Token: 0x04007CB2 RID: 31922
[FieldOffset(Offset = "0x28")]
[Token(Token = "0x4007CB2")]
internal X509Extensions crlEntryExtensions;
}
}