73 lines
2.7 KiB
C#
73 lines
2.7 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Pkcs;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Asn1.Cms
|
|
{
|
|
// Token: 0x02001943 RID: 6467
|
|
[Token(Token = "0x2001943")]
|
|
[StructLayout(3)]
|
|
public abstract class CmsObjectIdentifiers
|
|
{
|
|
// Token: 0x0600AD8F RID: 44431 RVA: 0x00289E6C File Offset: 0x0028806C
|
|
[Token(Token = "0x600AD8F")]
|
|
[Address(RVA = "0x3C1670", Offset = "0x3C0070", VA = "0x1803C1670")]
|
|
protected CmsObjectIdentifiers()
|
|
{
|
|
}
|
|
|
|
// Token: 0x0400722C RID: 29228
|
|
[Token(Token = "0x400722C")]
|
|
public static readonly DerObjectIdentifier Data = PkcsObjectIdentifiers.Data;
|
|
|
|
// Token: 0x0400722D RID: 29229
|
|
[Token(Token = "0x400722D")]
|
|
public static readonly DerObjectIdentifier SignedData = PkcsObjectIdentifiers.SignedData;
|
|
|
|
// Token: 0x0400722E RID: 29230
|
|
[Token(Token = "0x400722E")]
|
|
public static readonly DerObjectIdentifier EnvelopedData = PkcsObjectIdentifiers.EnvelopedData;
|
|
|
|
// Token: 0x0400722F RID: 29231
|
|
[Token(Token = "0x400722F")]
|
|
public static readonly DerObjectIdentifier SignedAndEnvelopedData = PkcsObjectIdentifiers.SignedAndEnvelopedData;
|
|
|
|
// Token: 0x04007230 RID: 29232
|
|
[Token(Token = "0x4007230")]
|
|
public static readonly DerObjectIdentifier DigestedData = PkcsObjectIdentifiers.DigestedData;
|
|
|
|
// Token: 0x04007231 RID: 29233
|
|
[Token(Token = "0x4007231")]
|
|
public static readonly DerObjectIdentifier EncryptedData = PkcsObjectIdentifiers.EncryptedData;
|
|
|
|
// Token: 0x04007232 RID: 29234
|
|
[Token(Token = "0x4007232")]
|
|
public static readonly DerObjectIdentifier AuthenticatedData = PkcsObjectIdentifiers.IdCTAuthData;
|
|
|
|
// Token: 0x04007233 RID: 29235
|
|
[Token(Token = "0x4007233")]
|
|
public static readonly DerObjectIdentifier CompressedData = PkcsObjectIdentifiers.IdCTCompressedData;
|
|
|
|
// Token: 0x04007234 RID: 29236
|
|
[Token(Token = "0x4007234")]
|
|
public static readonly DerObjectIdentifier AuthEnvelopedData = PkcsObjectIdentifiers.IdCTAuthEnvelopedData;
|
|
|
|
// Token: 0x04007235 RID: 29237
|
|
[Token(Token = "0x4007235")]
|
|
public static readonly DerObjectIdentifier timestampedData = PkcsObjectIdentifiers.IdCTTimestampedData;
|
|
|
|
// Token: 0x04007236 RID: 29238
|
|
[Token(Token = "0x4007236")]
|
|
public static readonly DerObjectIdentifier id_ri = new DerObjectIdentifier("1.3.6.1.5.5.7.16");
|
|
|
|
// Token: 0x04007237 RID: 29239
|
|
[Token(Token = "0x4007237")]
|
|
public static readonly DerObjectIdentifier id_ri_ocsp_response = CmsObjectIdentifiers.id_ri.Asn1GetHashCode();
|
|
|
|
// Token: 0x04007238 RID: 29240
|
|
[Token(Token = "0x4007238")]
|
|
public static readonly DerObjectIdentifier id_ri_scvp = CmsObjectIdentifiers.id_ri.Asn1GetHashCode();
|
|
}
|
|
}
|