- java.lang.Object
-
- java.security.spec.RSAKeyGenParameterSpec
-
- すべての実装されたインタフェース:
AlgorithmParameterSpec
public class RSAKeyGenParameterSpec extends Object implements AlgorithmParameterSpec
RSA鍵ペアを生成するために使用されるパラメータのセットを指定します。- 導入されたバージョン:
- 1.3
- 関連項目:
KeyPairGenerator.initialize(java.security.spec.AlgorithmParameterSpec)
-
-
フィールドのサマリー
フィールド 修飾子と型 フィールド 説明 static BigInteger
F0
公開指数値F0 = 3。static BigInteger
F4
公開指数値F4 = 65537。
-
コンストラクタのサマリー
コンストラクタ コンストラクタ 説明 RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent)
指定されたキー・サイズおよび公開指数値から新しいRSAParameterSpec
オブジェクトを構築します。
-
メソッドのサマリー
すべてのメソッド インスタンス・メソッド 具象メソッド 修飾子と型 メソッド 説明 int
getKeysize()
キー・サイズを戻します。BigInteger
getPublicExponent()
公開指数値を返します。
-
-
-
フィールドの詳細
-
F0
public static final BigInteger F0
公開指数値F0 = 3。
-
F4
public static final BigInteger F4
公開指数値F4 = 65537。
-
-
コンストラクタの詳細
-
RSAKeyGenParameterSpec
public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent)
指定されたキー・サイズおよび公開指数値から新しいRSAParameterSpec
オブジェクトを構築します。- パラメータ:
keysize
- モジュラス・サイズ(ビット数で指定)publicExponent
- 公開指数
-
-
メソッドの詳細
-
getKeysize
public int getKeysize()
キー・サイズを戻します。- 戻り値:
- キー・サイズ。
-
getPublicExponent
public BigInteger getPublicExponent()
公開指数値を返します。- 戻り値:
- 公開指数値。
-
-