jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/c14n/Canonicalizer.java
author chegar
Sun, 17 Aug 2014 15:54:13 +0100
changeset 25859 3317bb8137f4
parent 18780 jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/Canonicalizer.java@f47b920867e7
child 27081 1ceee8d3844d
permissions -rw-r--r--
8054834: Modular Source Code Reviewed-by: alanb, chegar, ihse, mduigou Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, chris.hegarty@oracle.com, erik.joelsson@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, magnus.ihse.bursie@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, paul.sandoz@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * reserved comment block
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT REMOVE OR ALTER!
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 */
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
     5
/**
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
     6
 * Licensed to the Apache Software Foundation (ASF) under one
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
     7
 * or more contributor license agreements. See the NOTICE file
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
     8
 * distributed with this work for additional information
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
     9
 * regarding copyright ownership. The ASF licenses this file
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    10
 * to you under the Apache License, Version 2.0 (the
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    11
 * "License"); you may not use this file except in compliance
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    12
 * with the License. You may obtain a copy of the License at
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 *
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    14
 * http://www.apache.org/licenses/LICENSE-2.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 *
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    16
 * Unless required by applicable law or agreed to in writing,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    17
 * software distributed under the License is distributed on an
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    18
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    19
 * KIND, either express or implied. See the License for the
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    20
 * specific language governing permissions and limitations
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    21
 * under the License.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
package com.sun.org.apache.xml.internal.security.c14n;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
import java.io.ByteArrayInputStream;
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    26
import java.io.InputStream;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.io.OutputStream;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.Map;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.util.Set;
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    30
import java.util.concurrent.ConcurrentHashMap;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    32
import javax.xml.XMLConstants;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import javax.xml.parsers.DocumentBuilder;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import javax.xml.parsers.DocumentBuilderFactory;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    36
import com.sun.org.apache.xml.internal.security.c14n.implementations.Canonicalizer11_OmitComments;
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    37
import com.sun.org.apache.xml.internal.security.c14n.implementations.Canonicalizer11_WithComments;
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    38
import com.sun.org.apache.xml.internal.security.c14n.implementations.Canonicalizer20010315ExclOmitComments;
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    39
import com.sun.org.apache.xml.internal.security.c14n.implementations.Canonicalizer20010315ExclWithComments;
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    40
import com.sun.org.apache.xml.internal.security.c14n.implementations.Canonicalizer20010315OmitComments;
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    41
import com.sun.org.apache.xml.internal.security.c14n.implementations.Canonicalizer20010315WithComments;
18780
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
    42
import com.sun.org.apache.xml.internal.security.c14n.implementations.CanonicalizerPhysical;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import com.sun.org.apache.xml.internal.security.exceptions.AlgorithmAlreadyRegisteredException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import org.w3c.dom.Document;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import org.w3c.dom.Node;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import org.w3c.dom.NodeList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import org.xml.sax.InputSource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * @author Christian Geuer-Pollmann
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
public class Canonicalizer {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    55
    /** The output encoding of canonicalized data */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    56
    public static final String ENCODING = "UTF8";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    58
    /**
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    59
     * XPath Expression for selecting every node and continuous comments joined
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    60
     * in only one node
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
     */
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    62
    public static final String XPATH_C14N_WITH_COMMENTS_SINGLE_NODE =
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    63
        "(.//. | .//@* | .//namespace::*)";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    65
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
     * The URL defined in XML-SEC Rec for inclusive c14n <b>without</b> comments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     */
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    68
    public static final String ALGO_ID_C14N_OMIT_COMMENTS =
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    69
        "http://www.w3.org/TR/2001/REC-xml-c14n-20010315";
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    70
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    71
     * The URL defined in XML-SEC Rec for inclusive c14n <b>with</b> comments.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    72
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    73
    public static final String ALGO_ID_C14N_WITH_COMMENTS =
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    74
        ALGO_ID_C14N_OMIT_COMMENTS + "#WithComments";
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    75
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    76
     * The URL defined in XML-SEC Rec for exclusive c14n <b>without</b> comments.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    77
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    78
    public static final String ALGO_ID_C14N_EXCL_OMIT_COMMENTS =
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    79
        "http://www.w3.org/2001/10/xml-exc-c14n#";
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    80
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    81
     * The URL defined in XML-SEC Rec for exclusive c14n <b>with</b> comments.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    82
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    83
    public static final String ALGO_ID_C14N_EXCL_WITH_COMMENTS =
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    84
        ALGO_ID_C14N_EXCL_OMIT_COMMENTS + "WithComments";
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    85
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    86
     * The URI for inclusive c14n 1.1 <b>without</b> comments.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    87
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    88
    public static final String ALGO_ID_C14N11_OMIT_COMMENTS =
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    89
        "http://www.w3.org/2006/12/xml-c14n11";
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    90
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    91
     * The URI for inclusive c14n 1.1 <b>with</b> comments.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    92
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    93
    public static final String ALGO_ID_C14N11_WITH_COMMENTS =
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    94
        ALGO_ID_C14N11_OMIT_COMMENTS + "#WithComments";
18780
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
    95
    /**
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
    96
     * Non-standard algorithm to serialize the physical representation for XML Encryption
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
    97
     */
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
    98
    public static final String ALGO_ID_C14N_PHYSICAL =
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
    99
        "http://santuario.apache.org/c14n/physical";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   101
    private static Map<String, Class<? extends CanonicalizerSpi>> canonicalizerHash =
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   102
        new ConcurrentHashMap<String, Class<? extends CanonicalizerSpi>>();
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   103
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   104
    private final CanonicalizerSpi canonicalizerSpi;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   106
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   107
     * Constructor Canonicalizer
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   108
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   109
     * @param algorithmURI
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   110
     * @throws InvalidCanonicalizerException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   111
     */
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   112
    private Canonicalizer(String algorithmURI) throws InvalidCanonicalizerException {
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   113
        try {
10694
cf59e2badd14 7088502: Security libraries don't build with javac -Werror
mullan
parents: 1337
diff changeset
   114
            Class<? extends CanonicalizerSpi> implementingClass =
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   115
                canonicalizerHash.get(algorithmURI);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   117
            canonicalizerSpi = implementingClass.newInstance();
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   118
            canonicalizerSpi.reset = true;
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   119
        } catch (Exception e) {
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   120
            Object exArgs[] = { algorithmURI };
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   121
            throw new InvalidCanonicalizerException(
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   122
                "signature.Canonicalizer.UnknownCanonicalizer", exArgs, e
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   123
            );
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   124
        }
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   125
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   127
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   128
     * Method getInstance
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   129
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   130
     * @param algorithmURI
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   131
     * @return a Canonicalizer instance ready for the job
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   132
     * @throws InvalidCanonicalizerException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   133
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   134
    public static final Canonicalizer getInstance(String algorithmURI)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   135
        throws InvalidCanonicalizerException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   136
        return new Canonicalizer(algorithmURI);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   137
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   139
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   140
     * Method register
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   141
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   142
     * @param algorithmURI
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   143
     * @param implementingClass
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   144
     * @throws AlgorithmAlreadyRegisteredException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   145
     */
10694
cf59e2badd14 7088502: Security libraries don't build with javac -Werror
mullan
parents: 1337
diff changeset
   146
    @SuppressWarnings("unchecked")
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   147
    public static void register(String algorithmURI, String implementingClass)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   148
        throws AlgorithmAlreadyRegisteredException, ClassNotFoundException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   149
        // check whether URI is already registered
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   150
        Class<? extends CanonicalizerSpi> registeredClass =
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   151
            canonicalizerHash.get(algorithmURI);
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   152
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   153
        if (registeredClass != null)  {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   154
            Object exArgs[] = { algorithmURI, registeredClass };
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   155
            throw new AlgorithmAlreadyRegisteredException("algorithm.alreadyRegistered", exArgs);
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   156
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   158
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   159
            algorithmURI, (Class<? extends CanonicalizerSpi>)Class.forName(implementingClass)
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   160
        );
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   161
    }
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   162
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   163
    /**
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   164
     * Method register
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   165
     *
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   166
     * @param algorithmURI
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   167
     * @param implementingClass
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   168
     * @throws AlgorithmAlreadyRegisteredException
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   169
     */
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   170
    public static void register(String algorithmURI, Class<CanonicalizerSpi> implementingClass)
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   171
        throws AlgorithmAlreadyRegisteredException, ClassNotFoundException {
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   172
        // check whether URI is already registered
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   173
        Class<? extends CanonicalizerSpi> registeredClass = canonicalizerHash.get(algorithmURI);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   175
        if (registeredClass != null)  {
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   176
            Object exArgs[] = { algorithmURI, registeredClass };
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   177
            throw new AlgorithmAlreadyRegisteredException("algorithm.alreadyRegistered", exArgs);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   178
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   180
        canonicalizerHash.put(algorithmURI, implementingClass);
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   181
    }
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   182
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   183
    /**
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   184
     * This method registers the default algorithms.
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   185
     */
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   186
    public static void registerDefaultAlgorithms() {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   187
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   188
            Canonicalizer.ALGO_ID_C14N_OMIT_COMMENTS,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   189
            Canonicalizer20010315OmitComments.class
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   190
        );
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   191
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   192
            Canonicalizer.ALGO_ID_C14N_WITH_COMMENTS,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   193
            Canonicalizer20010315WithComments.class
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   194
        );
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   195
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   196
            Canonicalizer.ALGO_ID_C14N_EXCL_OMIT_COMMENTS,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   197
            Canonicalizer20010315ExclOmitComments.class
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   198
        );
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   199
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   200
            Canonicalizer.ALGO_ID_C14N_EXCL_WITH_COMMENTS,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   201
            Canonicalizer20010315ExclWithComments.class
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   202
        );
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   203
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   204
            Canonicalizer.ALGO_ID_C14N11_OMIT_COMMENTS,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   205
            Canonicalizer11_OmitComments.class
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   206
        );
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   207
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   208
            Canonicalizer.ALGO_ID_C14N11_WITH_COMMENTS,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   209
            Canonicalizer11_WithComments.class
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   210
        );
18780
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
   211
        canonicalizerHash.put(
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
   212
            Canonicalizer.ALGO_ID_C14N_PHYSICAL,
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
   213
            CanonicalizerPhysical.class
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
   214
        );
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   215
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   217
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   218
     * Method getURI
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   219
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   220
     * @return the URI defined for this c14n instance.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   221
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   222
    public final String getURI() {
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   223
        return canonicalizerSpi.engineGetURI();
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   224
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   226
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   227
     * Method getIncludeComments
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   228
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   229
     * @return true if the c14n respect the comments.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   230
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   231
    public boolean getIncludeComments() {
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   232
        return canonicalizerSpi.engineGetIncludeComments();
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   233
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   235
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   236
     * This method tries to canonicalize the given bytes. It's possible to even
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   237
     * canonicalize non-wellformed sequences if they are well-formed after being
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   238
     * wrapped with a <CODE>&gt;a&lt;...&gt;/a&lt;</CODE>.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   239
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   240
     * @param inputBytes
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   241
     * @return the result of the canonicalization.
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   242
     * @throws CanonicalizationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   243
     * @throws java.io.IOException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   244
     * @throws javax.xml.parsers.ParserConfigurationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   245
     * @throws org.xml.sax.SAXException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   246
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   247
    public byte[] canonicalize(byte[] inputBytes)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   248
        throws javax.xml.parsers.ParserConfigurationException,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   249
        java.io.IOException, org.xml.sax.SAXException, CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   250
        InputStream bais = new ByteArrayInputStream(inputBytes);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   251
        InputSource in = new InputSource(bais);
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   252
        DocumentBuilderFactory dfactory = DocumentBuilderFactory.newInstance();
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   253
        dfactory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, Boolean.TRUE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   255
        dfactory.setNamespaceAware(true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   257
        // needs to validate for ID attribute normalization
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   258
        dfactory.setValidating(true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   260
        DocumentBuilder db = dfactory.newDocumentBuilder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   262
        /*
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   263
         * for some of the test vectors from the specification,
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   264
         * there has to be a validating parser for ID attributes, default
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   265
         * attribute values, NMTOKENS, etc.
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   266
         * Unfortunately, the test vectors do use different DTDs or
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   267
         * even no DTD. So Xerces 1.3.1 fires many warnings about using
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   268
         * ErrorHandlers.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   269
         *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   270
         * Text from the spec:
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   271
         *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   272
         * The input octet stream MUST contain a well-formed XML document,
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   273
         * but the input need not be validated. However, the attribute
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   274
         * value normalization and entity reference resolution MUST be
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   275
         * performed in accordance with the behaviors of a validating
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   276
         * XML processor. As well, nodes for default attributes (declared
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   277
         * in the ATTLIST with an AttValue but not specified) are created
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   278
         * in each element. Thus, the declarations in the document type
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   279
         * declaration are used to help create the canonical form, even
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   280
         * though the document type declaration is not retained in the
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   281
         * canonical form.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   282
         */
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   283
        db.setErrorHandler(new com.sun.org.apache.xml.internal.security.utils.IgnoreAllErrorHandler());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   285
        Document document = db.parse(in);
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   286
        return this.canonicalizeSubtree(document);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   287
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   289
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   290
     * Canonicalizes the subtree rooted by <CODE>node</CODE>.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   291
     *
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   292
     * @param node The node to canonicalize
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   293
     * @return the result of the c14n.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   294
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   295
     * @throws CanonicalizationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   296
     */
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   297
    public byte[] canonicalizeSubtree(Node node) throws CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   298
        return canonicalizerSpi.engineCanonicalizeSubTree(node);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   299
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   301
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   302
     * Canonicalizes the subtree rooted by <CODE>node</CODE>.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   303
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   304
     * @param node
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   305
     * @param inclusiveNamespaces
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   306
     * @return the result of the c14n.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   307
     * @throws CanonicalizationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   308
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   309
    public byte[] canonicalizeSubtree(Node node, String inclusiveNamespaces)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   310
        throws CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   311
        return canonicalizerSpi.engineCanonicalizeSubTree(node, inclusiveNamespaces);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   312
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   314
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   315
     * Canonicalizes an XPath node set. The <CODE>xpathNodeSet</CODE> is treated
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   316
     * as a list of XPath nodes, not as a list of subtrees.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   317
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   318
     * @param xpathNodeSet
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   319
     * @return the result of the c14n.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   320
     * @throws CanonicalizationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   321
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   322
    public byte[] canonicalizeXPathNodeSet(NodeList xpathNodeSet)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   323
        throws CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   324
        return canonicalizerSpi.engineCanonicalizeXPathNodeSet(xpathNodeSet);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   325
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   327
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   328
     * Canonicalizes an XPath node set. The <CODE>xpathNodeSet</CODE> is treated
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   329
     * as a list of XPath nodes, not as a list of subtrees.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   330
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   331
     * @param xpathNodeSet
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   332
     * @param inclusiveNamespaces
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   333
     * @return the result of the c14n.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   334
     * @throws CanonicalizationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   335
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   336
    public byte[] canonicalizeXPathNodeSet(
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   337
        NodeList xpathNodeSet, String inclusiveNamespaces
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   338
    ) throws CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   339
        return
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   340
            canonicalizerSpi.engineCanonicalizeXPathNodeSet(xpathNodeSet, inclusiveNamespaces);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   341
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   343
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   344
     * Canonicalizes an XPath node set.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   345
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   346
     * @param xpathNodeSet
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   347
     * @return the result of the c14n.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   348
     * @throws CanonicalizationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   349
     */
10694
cf59e2badd14 7088502: Security libraries don't build with javac -Werror
mullan
parents: 1337
diff changeset
   350
    public byte[] canonicalizeXPathNodeSet(Set<Node> xpathNodeSet)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   351
        throws CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   352
        return canonicalizerSpi.engineCanonicalizeXPathNodeSet(xpathNodeSet);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   353
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   355
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   356
     * Canonicalizes an XPath node set.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   357
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   358
     * @param xpathNodeSet
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   359
     * @param inclusiveNamespaces
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   360
     * @return the result of the c14n.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   361
     * @throws CanonicalizationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   362
     */
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   363
    public byte[] canonicalizeXPathNodeSet(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   364
        Set<Node> xpathNodeSet, String inclusiveNamespaces
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   365
    ) throws CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   366
        return
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   367
            canonicalizerSpi.engineCanonicalizeXPathNodeSet(xpathNodeSet, inclusiveNamespaces);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   368
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   370
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   371
     * Sets the writer where the canonicalization ends.  ByteArrayOutputStream
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   372
     * if none is set.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   373
     * @param os
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   374
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   375
    public void setWriter(OutputStream os) {
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   376
        canonicalizerSpi.setWriter(os);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   377
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   379
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   380
     * Returns the name of the implementing {@link CanonicalizerSpi} class
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   381
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   382
     * @return the name of the implementing {@link CanonicalizerSpi} class
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   383
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   384
    public String getImplementingCanonicalizerClass() {
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   385
        return canonicalizerSpi.getClass().getName();
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   386
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   388
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   389
     * Set the canonicalizer behaviour to not reset.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   390
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   391
    public void notReset() {
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   392
        canonicalizerSpi.reset = false;
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   393
    }
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   394
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
}