Defined in the PKCS #1 v2.1 standard.
Creates a new {@code RSAPublicKeySpec} with the specified modulus and public exponent.parammodulus the modulus {@code n}.parampublicExponent the public exponent {@code d}.sinceAndroid 1.0 this.modulus = modulus; this.publicExponent = publicExponent;
this.modulus = modulus; this.publicExponent = publicExponent;
Returns the modulus {@code n}.returnthe modulus {@code n}.sinceAndroid 1.0 return modulus;
return modulus;
Returns the public exponent {@code d}.returnthe public exponent {@code d}.sinceAndroid 1.0 return publicExponent;
return publicExponent;