Module java.xml.crypto

Interface DigestMethod

所有超级接口:
AlgorithmMethod, XMLStructure

public interface DigestMethod extends XMLStructure, AlgorithmMethod
表示XML DigestMethod元素的XML W3C XML签名语法和处理推荐标准中定义的内容。 XML模式定义如下:
   <element name="DigestMethod" type="ds:DigestMethodType"/>
     <complexType name="DigestMethodType" 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 类的 newDigestMethod 方法创建 DigestMethod 实例。

此类中定义的摘要方法算法URI在 W3C XML签名语法和处理推荐标准RFC 9231: 附加XML安全统一资源标识符(URI) 中指定。

自1.6版本起:
参见: