-
- All Known Subinterfaces:
-
RSAMultiPrimePrivateCrtKey
,RSAPrivateCrtKey
,RSAPrivateKey
,RSAPublicKey
public interface RSAKey
PKCS#1 v2.2标准中公钥或私钥的接口,例如RSA或RSASSA-PSS算法的接口。- 从以下版本开始:
- 1.3
- 另请参见:
-
RSAPublicKey
,RSAPrivateKey
-
-
方法摘要
所有方法 实例方法 抽象方法 Default Methods 变量和类型 方法 描述 BigInteger
getModulus()
返回模数。default AlgorithmParameterSpec
getParams()
返回与此键关联的参数。
-
-
-
方法详细信息
-
getModulus
BigInteger getModulus()
返回模数。- 结果
- 模数
-
getParams
default AlgorithmParameterSpec getParams()
返回与此键关联的参数。 参数是可选的,可以在密钥对生成期间明确指定或隐式创建。- 实现要求:
-
默认实现返回
null
。 - 结果
- 相关参数可以为null
- 从以下版本开始:
- 11
-
-