DSAParameterSpec
  public
  
  
  
  class
  DSAParameterSpec
  
    extends Object
  
  
  
  
  
      implements
      
        AlgorithmParameterSpec, 
      
        DSAParams
      
  
  
| java.lang.Object | |
| ↳ | java.security.spec.DSAParameterSpec | 
This class specifies the set of parameters used with the DSA algorithm.
See also:
Summary
| Public constructors | |
|---|---|
| 
      DSAParameterSpec(BigInteger p, BigInteger q, BigInteger g)
      Creates a new DSAParameterSpec with the specified parameter values. | |
| Public methods | |
|---|---|
| 
        
        
        
        
        
        BigInteger | 
      getG()
      Returns the base  | 
| 
        
        
        
        
        
        BigInteger | 
      getP()
      Returns the prime  | 
| 
        
        
        
        
        
        BigInteger | 
      getQ()
      Returns the sub-prime  | 
| Inherited methods | |
|---|---|
Public constructors
DSAParameterSpec
public DSAParameterSpec (BigInteger p, BigInteger q, BigInteger g)
Creates a new DSAParameterSpec with the specified parameter values.
| Parameters | |
|---|---|
| p | BigInteger: the prime. | 
| q | BigInteger: the sub-prime. | 
| g | BigInteger: the base. | 
Public methods
getG
public BigInteger getG ()
Returns the base g.
| Returns | |
|---|---|
| BigInteger | the base g. | 
getP
public BigInteger getP ()
Returns the prime p.
| Returns | |
|---|---|
| BigInteger | the prime p. | 
getQ
public BigInteger getQ ()
Returns the sub-prime q.
| Returns | |
|---|---|
| BigInteger | the sub-prime q. | 
