Interface RSAKey

All Known Subinterfaces:
RSAMultiPrimePrivateCrtKey, RSAPrivateCrtKey, RSAPrivateKey, RSAPublicKey

public interface RSAKey

The 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

Methods

Modifier and Type Method and Description
BigInteger getModulus()

Returns the modulus.

default AlgorithmParameterSpec getParams()

Returns the parameters associated with this key.

Methods

getModulus

BigInteger getModulus()

Returns the modulus.

Returns:
the modulus

getParams

default 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:
8

© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/javase/8/docs/api/java/security/interfaces/RSAKey.html