接口 SignatureMethod

所有父级接口:
AlgorithmMethod , XMLStructure

public interface SignatureMethod extends XMLStructure , AlgorithmMethod
W3C 对 XML 签名语法和处理的推荐 中定义的 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>
 
可以通过调用 XMLSignatureFactory 类的 newSignatureMethod 方法来创建 SignatureMethod 实例。
自从:
1.6
参见: