Java XML Digital Signature API Specification (JSR 105)
Table of Contents
- Introduction
- Acknowledgements
- Requirements
- API Dependencies
- Non-Goals
- Package Overview
- Service Providers
- DOM Mechanism Requirements
- Open API Issues
- Examples
Introduction
This document describes the Java XML Digital Signature API Specification (JSR 105). The purpose of this JSR is to define a standard Java API for generating and validating XML signatures.When this specification is final, there will be a Reference Implementation which will demonstrate the capabilities of this API and will provide an operational definition of this specification. A Technology Compatibility Kit (TCK) will also be available that will verify whether an implementation of the specification is compliant. These are required as per the Java Community Process 2.1.
The JSR 105 API is intended to target the following two types of users:
- Java programmers who want to use the JSR 105 API to generate and validate XML signatures.
- Java programmers who want to create a concrete implementation of the JSR 105 API and register it as a cryptographic service of a JCA provider.
Acknowledgements
The JSR 105 Expert Group:- Nicolas Catania, Hewlett-Packard
- Donald E. Eastlake 3rd, Motorola
- Christian Geuer-Pollmann, Apache Software Foundation
- Hans Granqvist, VeriSign
- Kazuyuki Harada, Fujitsu
- Anthony Ho, DSTC
- Merlin Hughes, Baltimore Technologies
- Joyce Leung, IBM
- Gregor Karlinger, IAIK
- Serge Mister, Entrust Technologies
- Takuya Mori, NEC Corporation
- Sean Mullan, Sun Microsystems (co-specification lead)
- Anthony Nadalin, IBM (co-specification lead)
- Erwin van der Koogh, Apache Software Foundation
- Chris Yeung, XML Asia
Requirements
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in RFC 2119.- W3C Recommendation, XML-Signature Syntax and Processing.
- The API MUST allow a programmer to generate and validate XML Signatures such that all of the SHOULD and MUST requirements specified by the W3C recommendation can be satisfied.
- The API MUST allow an implementation of the API to be created such that all of the SHOULD and MUST requirements specified by the W3C recommendation can be satisfied.
- An implementation SHOULD support the W3C Recommendation, XML-Signature XPath Filter Transform 2.0.
- An implementation SHOULD support the W3C Recommendation, Exclusive XML Canonicalization Version 1.0.
- DOM-independent API. The API MUST NOT have dependencies on a specific XML representation, such as DOM. It MUST be possible to create implementations of the API for different XML processing and mechanism representations, such as DOM, JDOM or dom4j.
- Extensible, provider-based API. It MUST be possible for a third-party to create and plug in an implementation responsible for managing and creating cryptographic and transform algorithms, dereferencing URIs, and marshalling objects to/from XML.
- Support for a default XML mechanism type: DOM. An implementation MUST minimally support the default mechanism type: DOM. This ensures that all implementations of JSR 105 are guaranteed a minimal level of functionality. Implementations MAY support other mechanism types.
- Interoperability for the default XML mechanism type: DOM. The API SHOULD ensure that applications using a DOM implementation are portable and interoperable.
- J2SE requirements. Implementations of this technology MAY support J2SE 1.2 or later but MUST at a minimum support version 1.4 or later of J2SE.
API Dependencies
- J2SE (JDK) 1.2 or higher
- W3C DOM Level 2 API. This dependency is required by classes of the
javax.xml.crypto.dom
andjavax.xml.crypto.dsig.dom
packages.
Non-Goals
- Support for non-DOM implementations. While the API SHOULD allow non-DOM implementations to be created, it is beyond the scope of the first version to ensure interoperability between implementations other than DOM. Additional standard service provider types MAY be added in the future and necessary API enhancements MAY be considered for a maintenance revision of JSR 105.
- Support for a higher-level API. We expect that programmers MAY design high-level APIs which will be built on the JSR 105 API to hide low-level details, address common use-cases or apply profiling constraints. However, it is beyond the scope of the first version to support these requirements. A high-level API MAY be considered for a maintenance release of JSR 105.
- Support for user-pluggable algorithms (other than transform and canonicalization algorithms which is supported by the javax.xml.crypto.dsig.TransformService class): Allowing developers to plug in their own implementations of XML Signature algorithms without requiring them to create a complete JSR 105 implementation seems like a worthy goal but SHALL NOT be REQUIRED for this release of JSR 105. A solution we are investigating for a subsequent release of Java SE is to enhance the underlying JCA/JCE to add better support for registering, parsing and processing XML security algorithms, parameters, and key information.
Package Overview
The JSR 105 API consists of 6 packages:- javax.xml.crypto
- javax.xml.crypto.dom
- javax.xml.crypto.dsig
- javax.xml.crypto.dsig.dom
- javax.xml.crypto.dsig.keyinfo
- javax.xml.crypto.dsig.spec
KeyInfo
object, and the URIDereferencer class which allows developers to create and specify their own URI dereferencing implementations.
The javax.xml.crypto.dsig package includes interfaces that represent the core elements defined in the W3C XML digital signature specification. Of primary significance is the XMLSignature class, which allows you to sign and validate an XML digital signature. Most of the XML signature structures or elements are represented by a corresponding interface (except for the KeyInfo
structures, which are included in their own package, and discussed in the next paragraph). These interfaces include: SignedInfo, CanonicalizationMethod, SignatureMethod, Reference, Transform, DigestMethod, XMLObject, Manifest, SignatureProperty, and SignatureProperties. The XMLSignatureFactory class is an abstract factory that is used to create objects that implement these interfaces.
The javax.xml.crypto.dsig.keyinfo package contains interfaces that represent most of the KeyInfo
structures defined in the W3C XML digital signature recommendation, including KeyInfo, KeyName, KeyValue, X509Data, X509IssuerSerial, RetrievalMethod, and PGPData. The KeyInfoFactory class is an abstract factory that is used to create objects that implement these interfaces.
The javax.xml.crypto.dsig.spec package contains interfaces and classes representing input parameters for the digest, signature, transform, or canonicalization algorithms used in the processing of XML signatures.
Finally, the javax.xml.crypto.dom and javax.xml.crypto.dsig.dom packages contains DOM-specific classes for the javax.xml.crypto and javax.xml.crypto.dsig packages, respectively. Only developers and users who are creating or using a DOM-based XMLSignatureFactory or KeyInfoFactory implementation should need to make direct use of these packages.
Service Providers
A JSR 105 cryptographic service is a concrete implementation of the abstract XMLSignatureFactory and KeyInfoFactory classes and is responsible for creating objects and algorithms that parse, generate and validate XML Signatures and KeyInfo structures. A concrete implementation ofXMLSignatureFactory
MUST provide support for each of the REQUIRED algorithms as specified by the W3C recommendation for XML Signatures. It MAY support other algorithms as defined by the W3C recommendation or other specifications.
JSR 105 leverages the JCA provider model for registering and loading XMLSignatureFactory
and KeyInfoFactory
implementations.
Each concrete XMLSignatureFactory
or KeyInfoFactory
implementation supports a specific XML mechanism type that identifies the XML processing mechanism that an implementation uses internally to parse and generate XML signature and KeyInfo structures. This JSR supports one standard type: DOM. Support for new standard types (such as JDOM) MAY be added in the future.
A JSR 105 implementation SHOULD use underlying JCA engine classes, such as java.security.Signature and java.security.MessageDigest to perform cryptographic operations.
In addition to the XMLSignatureFactory
and KeyInfoFactory
classes, JSR 105 supports a service provider interface for transform and canonicalization algorithms. The TransformService class allows you to develop and plug in an implementation of a specific transform or canonicalization algorithm for a particular XML mechanism type. The TransformService
class uses the standard JCA provider model for registering and loading implementations. Each JSR 105 implementation SHOULD use the TransformService
class to find a provider that supports transform and canonicalization algorithms in XML Signatures that it is generating or validating.
DOM Mechanism Requirements
The following requirements MUST be abided by when implementing a DOM-basedXMLSignatureFactory
, KeyInfoFactory
or TransformService
in order to minimize interoperability problems:
- The unmarshalXMLSignature method of
XMLSignatureFactory
MUST support DOMValidateContext types. If the type isDOMValidateContext
, it SHOULD contain an Element of typeSignature
. Additionally, theunmarshalXMLSignature
method MAY populate the Id/Element mappings of the passed-inDOMValidateContext
. - The sign method of XMLSignatures produced by
XMLSignatureFactory
MUST support DOMSignContext types and the validate method MUST support DOMValidateContext types. This requirement also applies to the validate method of SignatureValue and the validate method of Reference. - The implementation MUST support DOMStructures as the mechanism for the application to specify extensible content (any elements or mixed content).
- If the dereference method of user-specified URIDereferencers returns NodeSetData objects, the
iterator
method MUST return an iteration over objects of typeorg.w3c.dom.Node
. URIReference
objects passed to thedereference
method of user-specifiedURIDereferencer
s MUST be of type DOMURIReference andXMLCryptoContext
objects MUST implement DOMCryptoContext.- The previous 2 requirements also apply to
URIDereferencer
s returned by thegetURIDereferencer
method ofXMLSignatureFactory
andKeyInfoFactory
. - The unmarshalKeyInfo method of
KeyInfoFactory
MUST support DOMStructure types. If the type isDOMStructure
, it SHOULD contain an Element of typeKeyInfo
. - The transform method of
Transform
MUST support DOMCryptoContext context parameter types. - The newtransform and newCanonicalizationMethod methods of
XMLSignatureFactory
MUST support DOMStructure parameter types. - The init, and marshalParams methods of
TransformService
MUST support DOMStructure and DOMCryptoContext types. - The unmarshalXMLSignature method of
XMLSignatureFactory
MUST support DOMStructure types. If the type isDOMStructure
, it SHOULD contain an Element of typeSignature
. - The marshal method of
KeyInfo
MUST support DOMStructure and DOMCryptoContext parameter types.
XMLSignatureFactory
might use a SAX parser internally to canonicalize data.
Open API Issues
The following is a list of open API issues.- ID attribute registration of external XML document references is not supported.
Consider the following reference:
Dereferencing the external document results in an octet stream which is subsequently converted to a NodeSet by the JSR 105 implementation. But the API does not provide a mechanism for registering ID attributes of external documents and therefore the XPath Transform implementation may be unable to identify the "foo" ID.<Reference URI="document.xml"> <Transforms> <Transform Algorithm="http://www.w3.org/TR/1999/REC-xpath-19991116"> <XPath>id("foo")</XPath> </Transform> </Transforms> </Reference>