Defined in the PKCS #1 v2.1 standard
Creates a new {@code RSAPrivateKeySpec} with the specified modulus and private exponent.parammodulus the modulus {@code n}.paramprivateExponent the private exponent {@code e}sinceAndroid 1.0 this.modulus = modulus; this.privateExponent = privateExponent;
this.modulus = modulus; this.privateExponent = privateExponent;
Returns the modulus {@code n}.returnthe modulus {@code n}.sinceAndroid 1.0 return modulus;
return modulus;
Returns the private exponent {@code e}.returnthe private exponent {@code e}.sinceAndroid 1.0 return privateExponent;
return privateExponent;