java.lang.Object
java.security.spec.RSAPublicKeySpec
- 所有已实现的接口:
-
KeySpec
该类指定了一个RSA公钥。
- 自JDK版本:
- 1.2
- 参见:
-
Constructor Summary
ConstructorDescriptionRSAPublicKeySpec
(BigInteger modulus, BigInteger publicExponent) 创建一个新的RSAPublicKeySpec。RSAPublicKeySpec
(BigInteger modulus, BigInteger publicExponent, AlgorithmParameterSpec params) 创建一个带有额外密钥参数的新的RSAPublicKeySpec。 -
Method Summary
Modifier and TypeMethodDescription返回模数。返回与此密钥关联的参数,如果不存在则可能为null。返回公共指数。
-
Constructor Details
-
RSAPublicKeySpec
创建一个新的RSAPublicKeySpec。- 参数:
-
modulus
- 模数 -
publicExponent
- 公共指数
-
RSAPublicKeySpec
public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent, AlgorithmParameterSpec params) 创建一个带有额外密钥参数的新的RSAPublicKeySpec。- 参数:
-
modulus
- 模数 -
publicExponent
- 公共指数 -
params
- 与此密钥关联的参数,可能为null - 自JDK版本:
- 11
-
-
Method Details
-
getModulus
返回模数。- 返回:
- 模数
-
getPublicExponent
返回公共指数。- 返回:
- 公共指数
-
getParams
返回与此密钥关联的参数,如果不存在则可能为null。- 返回:
- 与此密钥关联的参数
- 自JDK版本:
- 11
-