- 
- All Known Subinterfaces:
- RSAMultiPrimePrivateCrtKey,- RSAPrivateCrtKey,- RSAPrivateKey,- RSAPublicKey
 
 public interface RSAKeyThe interface to a public or private key in PKCS#1 v2.2 standard, such as those for RSA, or RSASSA-PSS algorithms.- Since:
- 1.3
- See Also:
- RSAPublicKey,- RSAPrivateKey
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description BigIntegergetModulus()Returns the modulus.default AlgorithmParameterSpecgetParams()Returns the parameters associated with this key.
 
- 
- 
- 
Method Detail- 
getModulusBigInteger getModulus() Returns the modulus.- Returns:
- the modulus
 
 - 
getParamsdefault AlgorithmParameterSpec getParams() Returns the parameters associated with this key. The parameters are optional and may be either explicitly specified or implicitly created during key pair generation.- Implementation Requirements:
- The default implementation returns null.
- Returns:
- the associated parameters, may be null
- Since:
- 11
 
 
- 
 
-