Creates a new {@code DSAPrivateKeySpec} with the specified private key, prime, sub-prime and base.paramx the private key {@code x}.paramp the prime {@code p}.paramq the sub-prime {@code q}.paramg the base {@code g}.sinceAndroid 1.0 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 {@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 private key {@code x}.returnthe private key {@code x}.sinceAndroid 1.0 return x;
return x;