mscorlib(4.0.0.0) API with additions
RSAParameters.cs
2 
4 {
7  [ComVisible(true)]
8  public struct RSAParameters
9  {
11  public byte[] Exponent;
12 
14  public byte[] Modulus;
15 
17  [NonSerialized]
18  public byte[] P;
19 
21  [NonSerialized]
22  public byte[] Q;
23 
25  [NonSerialized]
26  public byte[] DP;
27 
29  [NonSerialized]
30  public byte[] DQ;
31 
33  [NonSerialized]
34  public byte[] InverseQ;
35 
37  [NonSerialized]
38  public byte[] D;
39  }
40 }
byte [] Modulus
Represents the Modulus parameter for the T:System.Security.Cryptography.RSA algorithm.
Definition: __Canon.cs:3
byte [] D
Represents the D parameter for the T:System.Security.Cryptography.RSA algorithm.
Represents the standard parameters for the T:System.Security.Cryptography.RSA algorithm.
Definition: RSAParameters.cs:8
byte [] DQ
Represents the DQ parameter for the T:System.Security.Cryptography.RSA algorithm.
byte [] P
Represents the P parameter for the T:System.Security.Cryptography.RSA algorithm.
byte [] InverseQ
Represents the InverseQ parameter for the T:System.Security.Cryptography.RSA algorithm.
byte [] Q
Represents the Q parameter for the T:System.Security.Cryptography.RSA algorithm.
byte [] DP
Represents the DP parameter for the T:System.Security.Cryptography.RSA algorithm.
Specifies that the class can be serialized.
byte [] Exponent
Represents the Exponent parameter for the T:System.Security.Cryptography.RSA algorithm.