-
- 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 String
RIPEMD160
RIPEMD-160摘要方法算法URI。static String
SHA1
SHA1摘要方法算法URI。static String
SHA224
SHA224摘要方法算法URI。static String
SHA256
SHA256摘要方法算法URI。static String
SHA3_224
SHA3-224摘要方法算法URI。static String
SHA3_256
SHA3-256摘要方法算法URI。static String
SHA3_384
SHA3-384摘要方法算法URI。static String
SHA3_512
SHA3-512摘要方法算法URI。static String
SHA384
SHA384摘要方法算法URI。static String
SHA512
SHA512摘要方法算法URI。
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 AlgorithmParameterSpec
getParameterSpec()
返回与此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
)
-
-