using System; using System.Runtime.InteropServices; using Cpp2IlInjected; namespace System.Security.Cryptography { /// Represents the standard parameters for the algorithm. // Token: 0x02000403 RID: 1027 [Token(Token = "0x2000403")] [ComVisible(true)] [Serializable] public struct RSAParameters { /// Represents the parameter for the algorithm. // Token: 0x040013A7 RID: 5031 [global::Cpp2IlInjected.FieldOffset(Offset = "0x0")] [Token(Token = "0x40013A7")] public byte[] Exponent; /// Represents the parameter for the algorithm. // Token: 0x040013A8 RID: 5032 [global::Cpp2IlInjected.FieldOffset(Offset = "0x8")] [Token(Token = "0x40013A8")] public byte[] Modulus; /// Represents the parameter for the algorithm. // Token: 0x040013A9 RID: 5033 [global::Cpp2IlInjected.FieldOffset(Offset = "0x10")] [Token(Token = "0x40013A9")] [NonSerialized] public byte[] P; /// Represents the parameter for the algorithm. // Token: 0x040013AA RID: 5034 [global::Cpp2IlInjected.FieldOffset(Offset = "0x18")] [Token(Token = "0x40013AA")] [NonSerialized] public byte[] Q; /// Represents the parameter for the algorithm. // Token: 0x040013AB RID: 5035 [global::Cpp2IlInjected.FieldOffset(Offset = "0x20")] [Token(Token = "0x40013AB")] [NonSerialized] public byte[] DP; /// Represents the parameter for the algorithm. // Token: 0x040013AC RID: 5036 [global::Cpp2IlInjected.FieldOffset(Offset = "0x28")] [Token(Token = "0x40013AC")] [NonSerialized] public byte[] DQ; /// Represents the parameter for the algorithm. // Token: 0x040013AD RID: 5037 [global::Cpp2IlInjected.FieldOffset(Offset = "0x30")] [Token(Token = "0x40013AD")] [NonSerialized] public byte[] InverseQ; /// Represents the parameter for the algorithm. // Token: 0x040013AE RID: 5038 [global::Cpp2IlInjected.FieldOffset(Offset = "0x38")] [Token(Token = "0x40013AE")] [NonSerialized] public byte[] D; } }