mscorlib(4.0.0.0) API with additions
DSAParameters.cs
2 
4 {
7  [ComVisible(true)]
8  public struct DSAParameters
9  {
11  public byte[] P;
12 
14  public byte[] Q;
15 
17  public byte[] G;
18 
20  public byte[] Y;
21 
23  public byte[] J;
24 
26  [NonSerialized]
27  public byte[] X;
28 
30  public byte[] Seed;
31 
33  public int Counter;
34  }
35 }
byte [] J
Specifies the J parameter for the T:System.Security.Cryptography.DSA algorithm.
byte [] P
Specifies the P parameter for the T:System.Security.Cryptography.DSA algorithm.
byte [] X
Specifies the X parameter for the T:System.Security.Cryptography.DSA algorithm.
Definition: __Canon.cs:3
byte [] Q
Specifies the Q parameter for the T:System.Security.Cryptography.DSA algorithm.
byte [] Seed
Specifies the seed for the T:System.Security.Cryptography.DSA algorithm.
byte [] Y
Specifies the Y parameter for the T:System.Security.Cryptography.DSA algorithm.
byte [] G
Specifies the G parameter for the T:System.Security.Cryptography.DSA algorithm.
Specifies that the class can be serialized.
int Counter
Specifies the counter for the T:System.Security.Cryptography.DSA algorithm.
Contains the typical parameters for the T:System.Security.Cryptography.DSA algorithm.
Definition: DSAParameters.cs:8