- java.lang.Object
-
- java.security.spec.RSAPrivateKeySpec
-
- 实现的所有接口
-
KeySpec
public class RSAPrivateKeySpec extends Object implements KeySpec
此类指定RSA私钥。- 从以下版本开始:
- 1.2
- 另请参见:
-
Key
,KeyFactory
,KeySpec
,PKCS8EncodedKeySpec
,RSAPublicKeySpec
,RSAPrivateCrtKeySpec
-
-
构造方法摘要
构造方法 构造器 描述 RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent)
创建一个新的RSAPrivateKeySpec。RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent, AlgorithmParameterSpec params)
使用其他关键参数创建新的RSAPrivateKeySpec。
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 BigInteger
getModulus()
返回模数。AlgorithmParameterSpec
getParams()
返回与此键关联的参数,如果不存在,则可以为null。BigInteger
getPrivateExponent()
返回私有指数。
-
-
-
构造方法详细信息
-
RSAPrivateKeySpec
public RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent)
创建一个新的RSAPrivateKeySpec。- 参数
-
modulus
- 模数 -
privateExponent
- 私人指数
-
RSAPrivateKeySpec
public RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent, AlgorithmParameterSpec params)
使用其他关键参数创建新的RSAPrivateKeySpec。- 参数
-
modulus
- 模数 -
privateExponent
- 私人指数 -
params
- 与此键关联的参数可以为null - 从以下版本开始:
- 11
-
-
方法详细信息
-
getModulus
public BigInteger getModulus()
返回模数。- 结果
- 模数
-
getPrivateExponent
public BigInteger getPrivateExponent()
返回私有指数。- 结果
- 私人指数
-
getParams
public AlgorithmParameterSpec getParams()
返回与此键关联的参数,如果不存在,则可以为null。- 结果
- 与此键关联的参数
- 从以下版本开始:
- 11
-
-