oh dear
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
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: 0x020001DB RID: 475
|
||||
[Token(Token = "0x20001DB")]
|
||||
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: 0x040006BF RID: 1727
|
||||
[Token(Token = "0x40006BF")]
|
||||
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: 0x040006C0 RID: 1728
|
||||
[Token(Token = "0x40006C0")]
|
||||
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: 0x040006C1 RID: 1729
|
||||
[Token(Token = "0x40006C1")]
|
||||
CapiSha1
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user