インタフェースSignatureMethod

すべてのスーパー・インタフェース:
AlgorithmMethod, XMLStructure

public interface SignatureMethod extends XMLStructure, AlgorithmMethod
W3C Recommendation for XML-Signature Syntax and Processing」で定義されているXML SignatureMethod要素の表現。 XMLスキーマ定義は、次のように定義されます。
  <element name="SignatureMethod" type="ds:SignatureMethodType"/>
    <complexType name="SignatureMethodType" mixed="true">
      <sequence>
        <element name="HMACOutputLength" minOccurs="0" type="ds:HMACOutputLengthType"/>
        <any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
          <!-- (0,unbounded) elements from (1,1) namespace -->
      </sequence>
      <attribute name="Algorithm" type="anyURI" use="required"/>
    </complexType>
SignatureMethodインスタンスは、XMLSignatureFactoryクラスのnewSignatureMethodメソッドを呼び出すことで作成できます。

このクラスで定義されたシグネチャ・メソッド・アルゴリズムURIは、「W3C XMLシグネチャ構文および処理の推奨事項」および「RFC 9231: 追加のXMLセキュリティUniform Resource Identifiers (URI)」で指定されます

導入されたバージョン:
1.6
関連項目: