Files
Dec2017-Script-Dump/mscorlib/System/Security/Cryptography/KeyNumber.cs
T
2026-06-04 11:42:34 +02:00

20 lines
651 B
C#

using System;
using System.Runtime.InteropServices;
namespace System.Security.Cryptography
{
/// <summary>Specifies whether to create an asymmetric signature key or an asymmetric exchange key. </summary>
// Token: 0x0200050B RID: 1291
[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: 0x0400135F RID: 4959
Exchange = 1,
/// <summary>A signature key pair used for authenticating digitally signed messages or files.</summary>
// Token: 0x04001360 RID: 4960
Signature
}
}