using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Security.Cryptography { /// Specifies whether to create an asymmetric signature key or an asymmetric exchange key. // Token: 0x02000425 RID: 1061 [Token(Token = "0x2000425")] [ComVisible(true)] [Serializable] public enum KeyNumber { /// An exchange key pair used to encrypt session keys so that they can be safely stored and exchanged with other users. // Token: 0x0400144B RID: 5195 [Token(Token = "0x400144B")] Exchange = 1, /// A signature key pair used for authenticating digitally signed messages or files. // Token: 0x0400144C RID: 5196 [Token(Token = "0x400144C")] Signature } }