24 lines
762 B
C#
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
|
|
}
|
|
}
|