Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

24 lines
762 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Security.Cryptography
{
/// <summary>Specifies whether to create an asymmetric signature key or an asymmetric exchange key.</summary>
// Token: 0x02000441 RID: 1089
[Token(Token = "0x2000441")]
[ComVisible(true)]
[Serializable]
public enum KeyNumber
{
/// <summary>An exchange key pair used to encrypt session keys so that they can be safely stored and exchanged with other users.</summary>
// Token: 0x0400150E RID: 5390
[Token(Token = "0x400150E")]
Exchange = 1,
/// <summary>A signature key pair used for authenticating digitally signed messages or files.</summary>
// Token: 0x0400150F RID: 5391
[Token(Token = "0x400150F")]
Signature
}
}