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,63 @@
using System;
using Cpp2IlInjected;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.X509
{
// Token: 0x02001EF6 RID: 7926
[Token(Token = "0x2001EF6")]
public class ReasonFlags : DerBitString
{
// Token: 0x0600C6CA RID: 50890 RVA: 0x002CF2C4 File Offset: 0x002CD4C4
[Token(Token = "0x600C6CA")]
[Address(RVA = "0x2E84D80", Offset = "0x2E83D80", VA = "0x182E84D80")]
public ReasonFlags(int reasons)
: base(reasons)
{
}
// Token: 0x0600C6CB RID: 50891 RVA: 0x002CF2D8 File Offset: 0x002CD4D8
[Token(Token = "0x600C6CB")]
[Address(RVA = "0x2E84DE0", Offset = "0x2E83DE0", VA = "0x182E84DE0")]
public ReasonFlags(DerBitString reasons)
{
byte[] octets = reasons.GetOctets();
byte[] bytes = reasons.GetBytes();
}
// Token: 0x04007CA0 RID: 31904
[Token(Token = "0x4007CA0")]
public const int Unused = 128;
// Token: 0x04007CA1 RID: 31905
[Token(Token = "0x4007CA1")]
public const int KeyCompromise = 64;
// Token: 0x04007CA2 RID: 31906
[Token(Token = "0x4007CA2")]
public const int CACompromise = 32;
// Token: 0x04007CA3 RID: 31907
[Token(Token = "0x4007CA3")]
public const int AffiliationChanged = 16;
// Token: 0x04007CA4 RID: 31908
[Token(Token = "0x4007CA4")]
public const int Superseded = 8;
// Token: 0x04007CA5 RID: 31909
[Token(Token = "0x4007CA5")]
public const int CessationOfOperation = 4;
// Token: 0x04007CA6 RID: 31910
[Token(Token = "0x4007CA6")]
public const int CertificateHold = 2;
// Token: 0x04007CA7 RID: 31911
[Token(Token = "0x4007CA7")]
public const int PrivilegeWithdrawn = 1;
// Token: 0x04007CA8 RID: 31912
[Token(Token = "0x4007CA8")]
public const int AACompromise = 32768;
}
}