- 所有超级接口:
-
AlgorithmMethod
,Transform
,XMLStructure
表示XML
CanonicalizationMethod
元素的XML W3C XML签名语法和处理推荐标准中定义的方法。 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
实例。
- 自1.6版本起:
- 1.6
- 参见:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
独占性规范的XML(不包含注释)规范化方法算法URI。static final String
带有注释的独占性规范的XML规范化方法算法URI。static final String
XML规范(不包含注释)规范化方法算法URI。static final String
XML 1.1规范(不包含注释)规范化方法算法URI。static final String
带有注释的XML 1.1规范规范化方法算法URI。static final String
带有注释的XML规范规范化方法算法URI。 -
Method Summary
Modifier and TypeMethodDescription返回与此CanonicalizationMethod
关联的特定于算法的输入参数。Methods declared in interface javax.xml.crypto.AlgorithmMethod
getAlgorithm
Methods declared in interface javax.xml.crypto.XMLStructure
isFeatureSupported
-
Field Details
-
INCLUSIVE
XML规范(不包含注释)规范化方法算法URI。- 参见:
-
INCLUSIVE_WITH_COMMENTS
带有注释的XML规范规范化方法算法URI。- 参见:
-
EXCLUSIVE
独占性规范的XML(不包含注释)规范化方法算法URI。- 参见:
-
EXCLUSIVE_WITH_COMMENTS
带有注释的独占性规范的XML规范化方法算法URI。- 参见:
-
INCLUSIVE_11
XML 1.1规范(不包含注释)规范化方法算法URI。- 自13版本起:
- 13
- 参见:
-
INCLUSIVE_11_WITH_COMMENTS
带有注释的XML 1.1规范规范化方法算法URI。- 自13版本起:
- 13
- 参见:
-
-
Method Details
-
getParameterSpec
AlgorithmParameterSpec getParameterSpec()返回与此CanonicalizationMethod
关联的特定于算法的输入参数。返回的参数可以强制转换为
C14NMethodParameterSpec
对象。- 由以下指定:
-
getParameterSpec
在接口AlgorithmMethod
- 由以下指定:
-
getParameterSpec
在接口Transform
- 返回:
-
算法特定的输入参数(如果未指定可能为
null
)
-