FileDocCategorySizeDatePackage
DSAParameterSpec.javaAPI DocJava SE 5 API1394Fri Aug 26 14:57:18 BST 2005java.security.spec

DSAParameterSpec

public class DSAParameterSpec extends Object implements AlgorithmParameterSpec, DSAParams
This class specifies the set of parameters used with the DSA algorithm.
author
Jan Luehe
version
1.16, 12/19/03
see
AlgorithmParameterSpec
since
1.2

Fields Summary
BigInteger
p
BigInteger
q
BigInteger
g
Constructors Summary
public DSAParameterSpec(BigInteger p, BigInteger q, BigInteger g)
Creates a new DSAParameterSpec with the specified parameter values.

param
p the prime.
param
q the sub-prime.
param
g the base.

	this.p = p;
	this.q = q;
	this.g = g;
    
Methods Summary
public java.math.BigIntegergetG()
Returns the base g.

return
the base g.

	return this.g;
    
public java.math.BigIntegergetP()
Returns the prime p.

return
the prime p.

	return this.p;
    
public java.math.BigIntegergetQ()
Returns the sub-prime q.

return
the sub-prime q.

	return this.q;