51 lines
1.8 KiB
C#
51 lines
1.8 KiB
C#
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace System.Security.Cryptography
|
|
{
|
|
/// <summary>Represents the standard parameters for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
|
|
// Token: 0x02000523 RID: 1315
|
|
[ComVisible(true)]
|
|
[Serializable]
|
|
public struct RSAParameters
|
|
{
|
|
/// <summary>Represents the P parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
|
|
// Token: 0x040013A7 RID: 5031
|
|
[NonSerialized]
|
|
public byte[] P;
|
|
|
|
/// <summary>Represents the Q parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
|
|
// Token: 0x040013A8 RID: 5032
|
|
[NonSerialized]
|
|
public byte[] Q;
|
|
|
|
/// <summary>Represents the D parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
|
|
// Token: 0x040013A9 RID: 5033
|
|
[NonSerialized]
|
|
public byte[] D;
|
|
|
|
/// <summary>Represents the DP parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
|
|
// Token: 0x040013AA RID: 5034
|
|
[NonSerialized]
|
|
public byte[] DP;
|
|
|
|
/// <summary>Represents the DQ parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
|
|
// Token: 0x040013AB RID: 5035
|
|
[NonSerialized]
|
|
public byte[] DQ;
|
|
|
|
/// <summary>Represents the InverseQ parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
|
|
// Token: 0x040013AC RID: 5036
|
|
[NonSerialized]
|
|
public byte[] InverseQ;
|
|
|
|
/// <summary>Represents the Modulus parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
|
|
// Token: 0x040013AD RID: 5037
|
|
public byte[] Modulus;
|
|
|
|
/// <summary>Represents the Exponent parameter for the <see cref="T:System.Security.Cryptography.RSA" /> algorithm.</summary>
|
|
// Token: 0x040013AE RID: 5038
|
|
public byte[] Exponent;
|
|
}
|
|
}
|