API Overview
API Index
Package Overview
Direct link to this page
JDK 1.6
java.security.spec.
DSAParameterSpec
View Source
Author(s)
Jan Luehe
Since
1.2
Version
1.17, 11/17/05
Serial
Hierarchy
Object
DSAParameterSpec
Implements
AlgorithmParameterSpec
DSAParams
Subclasses
See DIRECT subclasses
Quick Links:
Constructors
Methods
Fields
NestedClasses
Description
public
class DSAParameterSpec
This class specifies the set of parameters used with the DSA algorithm.
This class specifies the set of parameters used with the DSA algorithm.
See also:
AlgorithmParameterSpec
Constructors
public
DSAParameterSpec
(
BigInteger
p,
BigInteger
q,
BigInteger
g)
Creates a new DSAParameterSpec with the specified parameter values.
Creates a new DSAParameterSpec with the specified parameter values.
Parameters:
-
p
- the prime.
-
q
- the sub-prime.
-
g
- the base.
Methods
Hide/Show inherited methods
public
BigInteger
getG
()
[Specified in
DSAParams
]
Returns the base
g
.
Returns the base
g
.
Returns:
the base
g
.
public
BigInteger
getP
()
[Specified in
DSAParams
]
Returns the prime
p
.
Returns the prime
p
.
Returns:
the prime
p
.
public
BigInteger
getQ
()
[Specified in
DSAParams
]
Returns the sub-prime
q
.
Returns the sub-prime
q
.
Returns:
the sub-prime
q
.
Fields
Hide/Show inherited fields
pack-private
BigInteger
g
pack-private
BigInteger
p
pack-private
BigInteger
q
Nested Classes
Generated By:
JavaOnTracks Doclet
0.1.4 ©Thibaut Colar