java.lang.Object
java.security.spec.RSAPrivateKeySpec
- すべての実装されたインタフェース:
KeySpec
- 直系の既知のサブクラス:
RSAMultiPrimePrivateCrtKeySpec,RSAPrivateCrtKeySpec
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を作成します。 -
メソッドのサマリー
修飾子と型 メソッド 説明 BigIntegergetModulus()モジュラスを返します。AlgorithmParameterSpecgetParams()このキーに関連付けられたパラメータを返します。値が存在しない場合はNullでもかまいません。BigIntegergetPrivateExponent()非公開指数を返します。
-
コンストラクタの詳細
-
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
-