57 lines
2.1 KiB
C#
57 lines
2.1 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Security.Cryptography
|
|
{
|
|
/// <summary>Identifies Windows cryptographic object identifier (OID) groups.</summary>
|
|
// Token: 0x020001CE RID: 462
|
|
[Token(Token = "0x20001CE")]
|
|
public enum OidGroup
|
|
{
|
|
/// <summary>All the groups.</summary>
|
|
// Token: 0x0400066C RID: 1644
|
|
[Token(Token = "0x400066C")]
|
|
All,
|
|
/// <summary>The Windows group that is represented by CRYPT_HASH_ALG_OID_GROUP_ID.</summary>
|
|
// Token: 0x0400066D RID: 1645
|
|
[Token(Token = "0x400066D")]
|
|
HashAlgorithm,
|
|
/// <summary>The Windows group that is represented by CRYPT_ENCRYPT_ALG_OID_GROUP_ID.</summary>
|
|
// Token: 0x0400066E RID: 1646
|
|
[Token(Token = "0x400066E")]
|
|
EncryptionAlgorithm,
|
|
/// <summary>The Windows group that is represented by CRYPT_PUBKEY_ALG_OID_GROUP_ID.</summary>
|
|
// Token: 0x0400066F RID: 1647
|
|
[Token(Token = "0x400066F")]
|
|
PublicKeyAlgorithm,
|
|
/// <summary>The Windows group that is represented by CRYPT_SIGN_ALG_OID_GROUP_ID.</summary>
|
|
// Token: 0x04000670 RID: 1648
|
|
[Token(Token = "0x4000670")]
|
|
SignatureAlgorithm,
|
|
/// <summary>The Windows group that is represented by CRYPT_RDN_ATTR_OID_GROUP_ID.</summary>
|
|
// Token: 0x04000671 RID: 1649
|
|
[Token(Token = "0x4000671")]
|
|
Attribute,
|
|
/// <summary>The Windows group that is represented by CRYPT_EXT_OR_ATTR_OID_GROUP_ID.</summary>
|
|
// Token: 0x04000672 RID: 1650
|
|
[Token(Token = "0x4000672")]
|
|
ExtensionOrAttribute,
|
|
/// <summary>The Windows group that is represented by CRYPT_ENHKEY_USAGE_OID_GROUP_ID.</summary>
|
|
// Token: 0x04000673 RID: 1651
|
|
[Token(Token = "0x4000673")]
|
|
EnhancedKeyUsage,
|
|
/// <summary>The Windows group that is represented by CRYPT_POLICY_OID_GROUP_ID.</summary>
|
|
// Token: 0x04000674 RID: 1652
|
|
[Token(Token = "0x4000674")]
|
|
Policy,
|
|
/// <summary>The Windows group that is represented by CRYPT_TEMPLATE_OID_GROUP_ID.</summary>
|
|
// Token: 0x04000675 RID: 1653
|
|
[Token(Token = "0x4000675")]
|
|
Template,
|
|
/// <summary>The Windows group that is represented by CRYPT_KDF_OID_GROUP_ID.</summary>
|
|
// Token: 0x04000676 RID: 1654
|
|
[Token(Token = "0x4000676")]
|
|
KeyDerivationFunction
|
|
}
|
|
}
|