- java.lang.Object
-
- java.security.spec.RSAPublicKeySpec
-
- All Implemented Interfaces:
-
KeySpec
public class RSAPublicKeySpec extends Object implements KeySpec
此类指定一个RSA公钥。- 从以下版本开始:
- 1.2
- 另请参见:
-
Key
,KeyFactory
,KeySpec
,X509EncodedKeySpec
,RSAPrivateKeySpec
,RSAPrivateCrtKeySpec
-
-
构造方法摘要
构造方法 Constructor 描述 RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent)
创建一个新的RSAPublicKeySpec。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 BigInteger
getModulus()
返回模数。BigInteger
getPublicExponent()
返回公共指数。
-
-
-
构造方法详细信息
-
RSAPublicKeySpec
public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent)
创建一个新的RSAPublicKeySpec。- 参数
-
modulus
- 模数 -
publicExponent
- 公众指数
-
-
方法详细信息
-
getModulus
public BigInteger getModulus()
返回模数。- 结果
- 模数
-
getPublicExponent
public BigInteger getPublicExponent()
返回公共指数。- 结果
- 公众指数
-
-