System.Security.Cryptography.DSAParameters
namespace System.Security.Cryptography
{
public struct DSAParameters
{
public int Counter;
public byte[] G;
public byte[] J;
public byte[] P;
public byte[] Q;
public byte[] Seed;
public byte[] X;
public byte[] Y;
}
}