-  
       
- All Superinterfaces:
 -  
         
AlgorithmMethod,XMLStructure 
public interface DigestMethod extends XMLStructure, AlgorithmMethod
DigestMethod中定义的XMLDigestMethod元素的表示 。 XML Schema Definition定义为:<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实例。- 从以下版本开始:
 - 1.6
 - 另请参见:
 -  
         
XMLSignatureFactory.newDigestMethod(String, DigestMethodParameterSpec) 
 
-  
        
       
-  
             
字段汇总
字段 变量和类型 字段 描述 static StringRIPEMD160RIPEMD-160摘要方法算法URI。static StringSHA1SHA1摘要方法算法URI。static StringSHA224SHA224摘要方法算法URI。static StringSHA256SHA256摘要方法算法URI。static StringSHA3_224SHA3-224摘要方法算法URI。static StringSHA3_256SHA3-256摘要方法算法URI。static StringSHA3_384SHA3-384摘要方法算法URI。static StringSHA3_512SHA3-512摘要方法算法URI。static StringSHA384SHA384摘要方法算法URI。static StringSHA512SHA512摘要方法算法URI。 
-  
             
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 AlgorithmParameterSpecgetParameterSpec()返回与此DigestMethod关联的特定于算法的输入参数。-  
               
声明方法的接口 javax.xml.crypto.AlgorithmMethod
getAlgorithm 
-  
               
声明方法的接口 javax.xml.crypto.XMLStructure
isFeatureSupported 
 -  
               
 
 -  
             
 
-  
        
       
-  
             
字段详细信息
-  
RIPEMD160
static final String RIPEMD160
RIPEMD-160摘要方法算法URI。- 另请参见:
 - 常数字段值
 
 
 -  
 
-  
             
方法详细信息
-  
getParameterSpec
AlgorithmParameterSpec getParameterSpec()
返回与此DigestMethod关联的特定于算法的输入参数。返回的参数可以类型转换为
DigestMethodParameterSpec对象。- Specified by:
 -  
              
getParameterSpec接口AlgorithmMethod - 结果
 - 
               特定于算法的参数(如果未指定,可能是 
              
null) 
 
 -  
 
 -