-
- All Superinterfaces:
-
AlgorithmMethod
,XMLStructure
public interface SignatureMethod extends XMLStructure, AlgorithmMethod
在SignatureMethod
中定义的XMLSignatureMethod
元素的表示 。 XML模式定义定义为:<element name="SignatureMethod" type="ds:SignatureMethodType"/> <complexType name="SignatureMethodType" mixed="true"> <sequence> <element name="HMACOutputLength" minOccurs="0" type="ds:HMACOutputLengthType"/> <any namespace="##any" minOccurs="0" maxOccurs="unbounded"/> <!-- (0,unbounded) elements from (1,1) namespace --> </sequence> <attribute name="Algorithm" type="anyURI" use="required"/> </complexType>
可以通过调用XMLSignatureFactory
类的newSignatureMethod
方法来创建SignatureMethod
实例。- 从以下版本开始:
- 1.6
- 另请参见:
-
XMLSignatureFactory.newSignatureMethod(String, SignatureMethodParameterSpec)
-
-
Field Summary
Fields Modifier and Type Field 描述 static String
DSA_SHA1
DSAwithSHA1 (DSS)签名方法算法URI。static String
HMAC_SHA1
HMAC-SHA1 MAC签名方法算法URIstatic String
RSA_SHA1
RSAwithSHA1 (PKCS#1)签名方法算法URI。
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 AlgorithmParameterSpec
getParameterSpec()
返回该算法特定的输入参数SignatureMethod
。-
Methods inherited from interface javax.xml.crypto.AlgorithmMethod
getAlgorithm
-
Methods inherited from interface javax.xml.crypto.XMLStructure
isFeatureSupported
-
-
-
-
字段详细信息
-
DSA_SHA1
static final String DSA_SHA1
DSAwithSHA1 (DSS)签名方法算法URI。- 另请参见:
- Constant Field Values
-
RSA_SHA1
static final String RSA_SHA1
RSAwithSHA1 (PKCS#1)签名方法算法URI。- 另请参见:
- Constant Field Values
-
HMAC_SHA1
static final String HMAC_SHA1
HMAC-SHA1 MAC签名方法算法URI- 另请参见:
- Constant Field Values
-
-
方法详细信息
-
getParameterSpec
AlgorithmParameterSpec getParameterSpec()
返回该算法特定的输入参数SignatureMethod
。返回的参数可以类型转换为
SignatureMethodParameterSpec
对象。- Specified by:
-
getParameterSpec
在接口AlgorithmMethod
- 结果
-
该算法的具体输入参数为
SignatureMethod
(如果未指定,可能为null
)
-
-