-
- All Superinterfaces:
-
AlgorithmMethod
,XMLStructure
public interface DigestMethod extends XMLStructure, AlgorithmMethod
DigestMethod
中定义的XMLDigestMethod
元素的表示 。 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
实例。- 从以下版本开始:
- 1.6
- 另请参见:
-
XMLSignatureFactory.newDigestMethod(String, DigestMethodParameterSpec)
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 AlgorithmParameterSpec
getParameterSpec()
返回与此DigestMethod
关联的特定于算法的输入参数。-
Methods inherited from interface javax.xml.crypto.AlgorithmMethod
getAlgorithm
-
Methods inherited from interface javax.xml.crypto.XMLStructure
isFeatureSupported
-
-
-
-
字段详细信息
-
SHA1
static final String SHA1
SHA1摘要方法算法URI。- 另请参见:
- Constant Field Values
-
SHA256
static final String SHA256
SHA256摘要方法算法URI。- 另请参见:
- Constant Field Values
-
SHA512
static final String SHA512
SHA512摘要方法算法URI。- 另请参见:
- Constant Field Values
-
RIPEMD160
static final String RIPEMD160
RIPEMD-160摘要方法算法URI。- 另请参见:
- Constant Field Values
-
-
方法详细信息
-
getParameterSpec
AlgorithmParameterSpec getParameterSpec()
返回与该DigestMethod
相关联的特定于算法的输入参数。返回的参数可以类型转换为
DigestMethodParameterSpec
对象。- Specified by:
-
getParameterSpec
接口AlgorithmMethod
- 结果
-
特定于算法的参数(如果未指定,可以是
null
)
-
-