Files
27Aug2021-Cpp2IL-Dump/System/Security/Cryptography/X509Certificates/X509SubjectKeyIdentifierHashAlgorithm.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

25 lines
1.2 KiB
C#

using System;
using Cpp2IlInjected;
namespace System.Security.Cryptography.X509Certificates
{
/// <summary>Defines the type of hash algorithm to use with the <see cref="T:System.Security.Cryptography.X509Certificates.X509SubjectKeyIdentifierExtension" /> class.</summary>
// Token: 0x020001D7 RID: 471
[Token(Token = "0x20001D7")]
public enum X509SubjectKeyIdentifierHashAlgorithm
{
/// <summary>The SKI is composed of the 160-bit SHA-1 hash of the value of the public key (excluding the tag, length, and number of unused bits).</summary>
// Token: 0x040006B2 RID: 1714
[Token(Token = "0x40006B2")]
Sha1,
/// <summary>The SKI is composed of a four-bit type field with the value 0100, followed by the least significant 60 bits of the SHA-1 hash of the value of the public key (excluding the tag, length, and number of unused bit string bits)</summary>
// Token: 0x040006B3 RID: 1715
[Token(Token = "0x40006B3")]
ShortSha1,
/// <summary>The subject key identifier (SKI) is composed of a 160-bit SHA-1 hash of the encoded public key (including the tag, length, and number of unused bits).</summary>
// Token: 0x040006B4 RID: 1716
[Token(Token = "0x40006B4")]
CapiSha1
}
}