Creates a new {@code DSAPublicKeySpec} with the specified public key, prime, sub-prime and base.paramy the public key value {@code y}.paramp the prime {@code p}.paramq the sub-prime {@code q}.paramg the base {@code g}.sinceAndroid 1.0 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 {@code g}.returnthe base {@code g}.sinceAndroid 1.0 return g;
return g;
Returns the prime {@code p}.returnthe prime {@code p}.sinceAndroid 1.0 return p;
return p;
Returns the sub-prime {@code q}.returnthe sub-prime {@code q}.sinceAndroid 1.0 return q;
return q;
Returns the public key value {@code y}.returnthe public key value {@code y}.sinceAndroid 1.0 return y;
return y;