Creates a new {@code RSAKeyGenParameterSpec} with the specified key size and public exponent.paramkeysize the size of the modulus (number of bits).parampublicExponent the value of the public exponent.sinceAndroid 1.0 this.keysize = keysize; this.publicExponent = publicExponent;
this.keysize = keysize; this.publicExponent = publicExponent;
Returns the size of the modulus (number of bits).returnthe size of the modulus (number of bits).sinceAndroid 1.0 return keysize;
return keysize;
Returns the value of the public exponent.returnthe value of the public exponent.sinceAndroid 1.0 return publicExponent;
return publicExponent;