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