Module java.xml.crypto

Interface CanonicalizationMethod

所有超级接口:
AlgorithmMethod, Transform, XMLStructure

public interface CanonicalizationMethod extends Transform
表示XML CanonicalizationMethod元素的XML W3C XML签名语法和处理推荐标准中定义的方法。 XML模式定义如下:
   <element name="CanonicalizationMethod" type="ds:CanonicalizationMethodType"/>
     <complexType name="CanonicalizationMethodType" mixed="true">
       <sequence>
         <any namespace="##any" minOccurs="0" maxOccurs="unbounded"/>
           <!-- (0,unbounded) elements from (1,1) namespace -->
       </sequence>
       <attribute name="Algorithm" type="anyURI" use="required"/>
     </complexType>
 
可通过调用XMLSignatureFactory类的newCanonicalizationMethod方法创建CanonicalizationMethod实例。
自1.6版本起:
1.6
参见: