-
- All Superinterfaces:
-
AlgorithmMethod
,Transform
,XMLStructure
public interface CanonicalizationMethod extends Transform
在CanonicalizationMethod
中定义的XMLCanonicalizationMethod
元素的表示 。 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
实例。
-
-
Field Summary
Fields Modifier and Type Field 描述 static String
EXCLUSIVE
Exclusive Canonical XML (without comments)规范化方法算法URI。static String
EXCLUSIVE_WITH_COMMENTS
Exclusive Canonical XML with comments规范化方法算法URI。static String
INCLUSIVE
Canonical XML (without comments)规范化方法算法URI。static String
INCLUSIVE_WITH_COMMENTS
Canonical XML with comments规范化方法算法URI。
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 AlgorithmParameterSpec
getParameterSpec()
返回与此CanonicalizationMethod
相关联的特定于算法的输入参数。-
Methods inherited from interface javax.xml.crypto.AlgorithmMethod
getAlgorithm
-
Methods inherited from interface javax.xml.crypto.XMLStructure
isFeatureSupported
-
-
-
-
字段详细信息
-
INCLUSIVE
static final String INCLUSIVE
Canonical XML (without comments)规范化方法算法URI。- 另请参见:
- Constant Field Values
-
INCLUSIVE_WITH_COMMENTS
static final String INCLUSIVE_WITH_COMMENTS
Canonical XML with comments规范化方法算法URI。- 另请参见:
- Constant Field Values
-
EXCLUSIVE
static final String EXCLUSIVE
Exclusive Canonical XML (without comments)规范化方法算法URI。- 另请参见:
- Constant Field Values
-
EXCLUSIVE_WITH_COMMENTS
static final String EXCLUSIVE_WITH_COMMENTS
Exclusive Canonical XML with comments规范化方法算法URI。- 另请参见:
- Constant Field Values
-
-
方法详细信息
-
getParameterSpec
AlgorithmParameterSpec getParameterSpec()
返回与此CanonicalizationMethod
相关联的特定于算法的输入参数。返回的参数可以类型转换为
C14NMethodParameterSpec
对象。- Specified by:
-
getParameterSpec
在接口AlgorithmMethod
- Specified by:
-
getParameterSpec
在接口Transform
- 结果
-
算法特定的输入参数(如果未指定,可以是
null
)
-
-