Creates a new DSAPrivateKeySpec with the specified parameter values.paramx the private key.paramp the prime.paramq the sub-prime.paramg the base. this.x = x; this.p = p; this.q = q; this.g = g;
this.x = x; this.p = p; this.q = q; this.g = g;
Returns the base g.returnthe base g. return this.g;
g
return this.g;
Returns the prime p.returnthe prime p. return this.p;
p
return this.p;
Returns the sub-prime q.returnthe sub-prime q. return this.q;
q
return this.q;
Returns the private key x.returnthe private key x. return this.x;
x
return this.x;