クラスRSAPSSParameterSpec

java.lang.Object
javax.xml.crypto.dsig.spec.RSAPSSParameterSpec
すべての実装されたインタフェース:
AlgorithmParameterSpec, SignatureMethodParameterSpec

public final class RSAPSSParameterSpec extends Object implements SignatureMethodParameterSpec
「XMLシグネチャRSASSA-PSSアルゴリズム」のパラメータ。 パラメータは、PSSParameterSpecオブジェクトとして表されます。

XMLスキーマ定義は、次のように定義されます。

   <xs:element name="RSAPSSParams" type="pss:RSAPSSParamsType">
       <xs:annotation>
           <xs:documentation>
   Top level element that can be used in xs:any namespace="#other"
   wildcard of ds:SignatureMethod content.
           </xs:documentation>
       </xs:annotation>
   </xs:element>
   <xs:complexType name="RSAPSSParamsType">
       <xs:sequence>
           <xs:element ref="ds:DigestMethod" minOccurs="0"/>
           <xs:element name="MaskGenerationFunction"
              type="pss:MaskGenerationFunctionType" minOccurs="0"/>
           <xs:element name="SaltLength" type="xs:int"
              minOccurs="0"/>
           <xs:element name="TrailerField" type="xs:int"
              minOccurs="0"/>
       </xs:sequence>
   </xs:complexType>
   <xs:complexType name="MaskGenerationFunctionType">
       <xs:sequence>
           <xs:element ref="ds:DigestMethod" minOccurs="0"/>
       </xs:sequence>
       <xs:attribute name="Algorithm" type="xs:anyURI"
          default="http://www.w3.org/2007/05/xmldsig-more#MGF1"/>
   </xs:complexType>

導入されたバージョン:
17
関連項目:
  • コンストラクタのサマリー

    コンストラクタ
    コンストラクタ
    説明
    指定されたPSSParameterSpecオブジェクトを含む新しいRSAPSSParameterSpecオブジェクトを作成します。
  • メソッドのサマリー

    修飾子と型
    メソッド
    説明
    内部のPSSParameterSpecオブジェクトを返します。

    クラスオブジェクトで宣言されたメソッド

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    修飾子と型
    メソッド
    説明
    protected Object
    このオブジェクトのコピーを作成して、返します。
    boolean
    このオブジェクトと他のオブジェクトが等しいかどうかを示します。
    protected void
    削除予定のため非推奨: このAPI要素は、将来のバージョンで削除される可能性があります。
    最終決定は非推奨であり、将来のリリースで削除される可能性があります。
    final Class<?>
    このObjectの実行時クラスを返します。
    int
    このオブジェクトに対するハッシュ・コード値を返します。
    final void
    このオブジェクトのモニターで待機中のスレッドを1つ再開します。
    final void
    このオブジェクトのモニターで待機中のすべてのスレッドを再開します。
    オブジェクトの文字列表現を返します。
    final void
    現在のスレッドが目覚めるまで待機します。通常、notifiedまたはinterruptedです。
    final void
    wait(long timeoutMillis)
    現在のスレッドは、通常、notifiedまたはinterruptedであるか、一定のリアルタイムが経過するまで、目覚めるまで待機します。
    final void
    wait(long timeoutMillis, int nanos)
    現在のスレッドは、通常、notifiedまたはinterruptedであるか、一定のリアルタイムが経過するまで、目覚めるまで待機します。
  • コンストラクタの詳細

    • RSAPSSParameterSpec

      public RSAPSSParameterSpec(PSSParameterSpec spec)
      指定されたPSSParameterSpecオブジェクトを含む新しいRSAPSSParameterSpecオブジェクトを作成します。
      パラメータ:
      spec - 入力PSSParameterSpecオブジェクト
      スロー:
      NullPointerException - specがnullの場合
  • メソッドの詳細

    • getPSSParameterSpec

      public PSSParameterSpec getPSSParameterSpec()
      内部のPSSParameterSpecオブジェクトを返します。
      戻り値:
      内部のPSSParameterSpecオブジェクト