XML Security, 1.6

com.ibm.xml.crypto.dsig
Interface SignatureMethod11

All Superinterfaces:
AlgorithmMethod, SignatureMethod, XMLStructure

public interface SignatureMethod11
extends SignatureMethod

A representation of the XML SignatureMethod element as defined in the W3C Recommendation for XML-Signature Syntax and Processing. The XML Schema Definition is defined as:

   <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>
 
A SignatureMethod instance may be created by invoking the newSignatureMethod method of the XMLSignatureFactory class.

See Also:
XMLSignatureFactory#newSignatureMethod(String, SignatureMethodParameterSpec)

Field Summary
static java.lang.String DSA_SHA256
          The DSAwithSHA256 signature method algorithm URI.
static java.lang.String ECDSA_SHA1
          The ECDSAwithSHA1 signature method algorithm URI.
static java.lang.String ECDSA_SHA256
          The ECDSAwithSHA256 signature method algorithm URI.
static java.lang.String ECDSA_SHA384
          The ECDSAwithSHA384 signature method algorithm URI.
static java.lang.String ECDSA_SHA512
          The ECDSAwithSHA512 signature method algorithm URI.
static java.lang.String HMAC_SHA1
          The HMAC-SHA1 MAC signature method algorithm URI
static java.lang.String HMAC_SHA256
          The HMAC-SHA256 MAC signature method algorithm URI
static java.lang.String HMAC_SHA384
          The HMAC-SHA384 MAC signature method algorithm URI
static java.lang.String HMAC_SHA512
          The HMAC-SHA512 MAC signature method algorithm URI
static java.lang.String RSA_SHA256
          The RSAwithSHA256 signature method algorithm URI.
static java.lang.String RSA_SHA384
          The RSAwithSHA384 signature method algorithm URI.
static java.lang.String RSA_SHA512
          The RSAwithSHA512 signature method algorithm URI.
 
Fields inherited from interface javax.xml.crypto.dsig.SignatureMethod
DSA_SHA1, RSA_SHA1
 
Method Summary
 
Methods inherited from interface javax.xml.crypto.dsig.SignatureMethod
getParameterSpec
 
Methods inherited from interface javax.xml.crypto.XMLStructure
isFeatureSupported
 
Methods inherited from interface javax.xml.crypto.AlgorithmMethod
getAlgorithm
 

Field Detail

DSA_SHA256

static final java.lang.String DSA_SHA256
The DSAwithSHA256 signature method algorithm URI.

See Also:
Constant Field Values

RSA_SHA256

static final java.lang.String RSA_SHA256
The RSAwithSHA256 signature method algorithm URI.

See Also:
Constant Field Values

RSA_SHA384

static final java.lang.String RSA_SHA384
The RSAwithSHA384 signature method algorithm URI.

See Also:
Constant Field Values

RSA_SHA512

static final java.lang.String RSA_SHA512
The RSAwithSHA512 signature method algorithm URI.

See Also:
Constant Field Values

ECDSA_SHA1

static final java.lang.String ECDSA_SHA1
The ECDSAwithSHA1 signature method algorithm URI.

See Also:
Constant Field Values

ECDSA_SHA256

static final java.lang.String ECDSA_SHA256
The ECDSAwithSHA256 signature method algorithm URI.

See Also:
Constant Field Values

ECDSA_SHA384

static final java.lang.String ECDSA_SHA384
The ECDSAwithSHA384 signature method algorithm URI.

See Also:
Constant Field Values

ECDSA_SHA512

static final java.lang.String ECDSA_SHA512
The ECDSAwithSHA512 signature method algorithm URI.

See Also:
Constant Field Values

HMAC_SHA1

static final java.lang.String HMAC_SHA1
The HMAC-SHA1 MAC signature method algorithm URI

See Also:
Constant Field Values

HMAC_SHA256

static final java.lang.String HMAC_SHA256
The HMAC-SHA256 MAC signature method algorithm URI

See Also:
Constant Field Values

HMAC_SHA384

static final java.lang.String HMAC_SHA384
The HMAC-SHA384 MAC signature method algorithm URI

See Also:
Constant Field Values

HMAC_SHA512

static final java.lang.String HMAC_SHA512
The HMAC-SHA512 MAC signature method algorithm URI

See Also:
Constant Field Values

XML Security, 1.6

Portions Copyright 2003, 2012 IBM Corporation.
Portions Copyright 2003, 2012 Oracle and/or its affiliates.