Files
niko 8fc35183db a
2026-04-11 22:19:20 +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: 0x02000425 RID: 1061
[Token(Token = "0x2000425")]
[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: 0x0400144B RID: 5195
[Token(Token = "0x400144B")]
Exchange = 1,
/// <summary>A signature key pair used for authenticating digitally signed messages or files.</summary>
// Token: 0x0400144C RID: 5196
[Token(Token = "0x400144C")]
Signature
}
}