Creates a new DSAPublicKeySpec with the specified parameter values.paramy the public key.paramp the prime.paramq the sub-prime.paramg the base. this.y = y; this.p = p; this.q = q; this.g = g;
this.y = y; 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 public key y.returnthe public key y. return this.y;
y
return this.y;