モジュール java.base
パッケージ java.security.spec

クラスRSAPublicKeySpec

java.lang.Object
java.security.spec.RSAPublicKeySpec
すべての実装されたインタフェース:
KeySpec

public class RSAPublicKeySpec extends Object implements KeySpec
このクラスはRSA公開キーを指定します。
導入されたバージョン:
1.2
関連項目:
  • コンストラクタの詳細

    • RSAPublicKeySpec

      public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent)
      新しいRSAPublicKeySpecを作成します。
      パラメータ:
      modulus - モジュラス
      publicExponent - 公開指数
    • RSAPublicKeySpec

      public RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent, AlgorithmParameterSpec params)
      追加のキー・パラメータを使用して、新しいRSAPublicKeySpecを作成します。
      パラメータ:
      modulus - モジュラス
      publicExponent - 公開指数
      params - このキーに関連付けられているパラメータはNullでもかまいません
      導入されたバージョン:
      11
  • メソッドの詳細

    • getModulus

      public BigInteger getModulus()
      モジュラスを返します。
      戻り値:
      モジュラス
    • getPublicExponent

      public BigInteger getPublicExponent()
      公開指数を返します。
      戻り値:
      公開指数
    • getParams

      public AlgorithmParameterSpec getParams()
      このキーに関連付けられたパラメータを返します。値が存在しない場合はNullでもかまいません。
      戻り値:
      このキーに関連付けられているパラメータ
      導入されたバージョン:
      11