jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/c14n/Canonicalizer.java
author darcy
Tue, 03 May 2016 10:40:54 -0700
changeset 37782 ad8fe7507ecc
parent 27081 1ceee8d3844d
permissions -rw-r--r--
6850612: Deprecate Class.newInstance since it violates the checked exception language contract Reviewed-by: lancea, mullan, dfuchs
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;
27081
1ceee8d3844d 8038913: Bolster XML support
mullan
parents: 25859
diff changeset
    44
import com.sun.org.apache.xml.internal.security.utils.JavaUtils;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import org.w3c.dom.Document;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import org.w3c.dom.Node;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import org.w3c.dom.NodeList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import org.xml.sax.InputSource;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * @author Christian Geuer-Pollmann
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
public class Canonicalizer {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    56
    /** The output encoding of canonicalized data */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    57
    public static final String ENCODING = "UTF8";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    59
    /**
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
    60
     * 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
    61
     * in only one node
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
     */
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    63
    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
    64
        "(.//. | .//@* | .//namespace::*)";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    66
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
     * The URL defined in XML-SEC Rec for inclusive c14n <b>without</b> comments.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
     */
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    69
    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
    70
        "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
    71
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    72
     * 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
    73
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    74
    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
    75
        ALGO_ID_C14N_OMIT_COMMENTS + "#WithComments";
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    76
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    77
     * 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
    78
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    79
    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
    80
        "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
    81
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    82
     * 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
    83
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    84
    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
    85
        ALGO_ID_C14N_EXCL_OMIT_COMMENTS + "WithComments";
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    86
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    87
     * 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
    88
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    89
    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
    90
        "http://www.w3.org/2006/12/xml-c14n11";
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    91
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    92
     * 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
    93
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
    94
    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
    95
        ALGO_ID_C14N11_OMIT_COMMENTS + "#WithComments";
18780
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
    96
    /**
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
    97
     * 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
    98
     */
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
    99
    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
   100
        "http://santuario.apache.org/c14n/physical";
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   102
    private static Map<String, Class<? extends CanonicalizerSpi>> canonicalizerHash =
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   103
        new ConcurrentHashMap<String, Class<? extends CanonicalizerSpi>>();
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   104
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   105
    private final CanonicalizerSpi canonicalizerSpi;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   107
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   108
     * Constructor Canonicalizer
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   109
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   110
     * @param algorithmURI
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   111
     * @throws InvalidCanonicalizerException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   112
     */
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   113
    private Canonicalizer(String algorithmURI) throws InvalidCanonicalizerException {
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   114
        try {
10694
cf59e2badd14 7088502: Security libraries don't build with javac -Werror
mullan
parents: 1337
diff changeset
   115
            Class<? extends CanonicalizerSpi> implementingClass =
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   116
                canonicalizerHash.get(algorithmURI);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
37782
ad8fe7507ecc 6850612: Deprecate Class.newInstance since it violates the checked exception language contract
darcy
parents: 27081
diff changeset
   118
            @SuppressWarnings("deprecation")
ad8fe7507ecc 6850612: Deprecate Class.newInstance since it violates the checked exception language contract
darcy
parents: 27081
diff changeset
   119
            CanonicalizerSpi tmp = implementingClass.newInstance();
ad8fe7507ecc 6850612: Deprecate Class.newInstance since it violates the checked exception language contract
darcy
parents: 27081
diff changeset
   120
            canonicalizerSpi = tmp;
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   121
            canonicalizerSpi.reset = true;
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   122
        } catch (Exception e) {
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   123
            Object exArgs[] = { algorithmURI };
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   124
            throw new InvalidCanonicalizerException(
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   125
                "signature.Canonicalizer.UnknownCanonicalizer", exArgs, e
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
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
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   130
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   131
     * Method getInstance
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   132
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   133
     * @param algorithmURI
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   134
     * @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
   135
     * @throws InvalidCanonicalizerException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   136
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   137
    public static final Canonicalizer getInstance(String algorithmURI)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   138
        throws InvalidCanonicalizerException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   139
        return new Canonicalizer(algorithmURI);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   140
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   142
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   143
     * Method register
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   144
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   145
     * @param algorithmURI
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   146
     * @param implementingClass
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   147
     * @throws AlgorithmAlreadyRegisteredException
27081
1ceee8d3844d 8038913: Bolster XML support
mullan
parents: 25859
diff changeset
   148
     * @throws SecurityException if a security manager is installed and the
1ceee8d3844d 8038913: Bolster XML support
mullan
parents: 25859
diff changeset
   149
     *    caller does not have permission to register the canonicalizer
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   150
     */
10694
cf59e2badd14 7088502: Security libraries don't build with javac -Werror
mullan
parents: 1337
diff changeset
   151
    @SuppressWarnings("unchecked")
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   152
    public static void register(String algorithmURI, String implementingClass)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   153
        throws AlgorithmAlreadyRegisteredException, ClassNotFoundException {
27081
1ceee8d3844d 8038913: Bolster XML support
mullan
parents: 25859
diff changeset
   154
        JavaUtils.checkRegisterPermission();
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   155
        // check whether URI is already registered
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   156
        Class<? extends CanonicalizerSpi> registeredClass =
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   157
            canonicalizerHash.get(algorithmURI);
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   158
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   159
        if (registeredClass != null)  {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   160
            Object exArgs[] = { algorithmURI, registeredClass };
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   161
            throw new AlgorithmAlreadyRegisteredException("algorithm.alreadyRegistered", exArgs);
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   162
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   164
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   165
            algorithmURI, (Class<? extends CanonicalizerSpi>)Class.forName(implementingClass)
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   166
        );
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   167
    }
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   168
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   169
    /**
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   170
     * Method register
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   171
     *
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   172
     * @param algorithmURI
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   173
     * @param implementingClass
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   174
     * @throws AlgorithmAlreadyRegisteredException
27081
1ceee8d3844d 8038913: Bolster XML support
mullan
parents: 25859
diff changeset
   175
     * @throws SecurityException if a security manager is installed and the
1ceee8d3844d 8038913: Bolster XML support
mullan
parents: 25859
diff changeset
   176
     *    caller does not have permission to register the canonicalizer
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   177
     */
27081
1ceee8d3844d 8038913: Bolster XML support
mullan
parents: 25859
diff changeset
   178
    public static void register(String algorithmURI, Class<? extends CanonicalizerSpi> implementingClass)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   179
        throws AlgorithmAlreadyRegisteredException, ClassNotFoundException {
27081
1ceee8d3844d 8038913: Bolster XML support
mullan
parents: 25859
diff changeset
   180
        JavaUtils.checkRegisterPermission();
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   181
        // check whether URI is already registered
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   182
        Class<? extends CanonicalizerSpi> registeredClass = canonicalizerHash.get(algorithmURI);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   184
        if (registeredClass != null)  {
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   185
            Object exArgs[] = { algorithmURI, registeredClass };
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   186
            throw new AlgorithmAlreadyRegisteredException("algorithm.alreadyRegistered", exArgs);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   187
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   189
        canonicalizerHash.put(algorithmURI, implementingClass);
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   190
    }
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   191
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   192
    /**
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   193
     * This method registers the default algorithms.
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   194
     */
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   195
    public static void registerDefaultAlgorithms() {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   196
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   197
            Canonicalizer.ALGO_ID_C14N_OMIT_COMMENTS,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   198
            Canonicalizer20010315OmitComments.class
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   199
        );
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   200
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   201
            Canonicalizer.ALGO_ID_C14N_WITH_COMMENTS,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   202
            Canonicalizer20010315WithComments.class
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   203
        );
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   204
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   205
            Canonicalizer.ALGO_ID_C14N_EXCL_OMIT_COMMENTS,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   206
            Canonicalizer20010315ExclOmitComments.class
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   207
        );
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   208
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   209
            Canonicalizer.ALGO_ID_C14N_EXCL_WITH_COMMENTS,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   210
            Canonicalizer20010315ExclWithComments.class
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   211
        );
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   212
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   213
            Canonicalizer.ALGO_ID_C14N11_OMIT_COMMENTS,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   214
            Canonicalizer11_OmitComments.class
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   215
        );
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   216
        canonicalizerHash.put(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   217
            Canonicalizer.ALGO_ID_C14N11_WITH_COMMENTS,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   218
            Canonicalizer11_WithComments.class
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   219
        );
18780
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
   220
        canonicalizerHash.put(
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
   221
            Canonicalizer.ALGO_ID_C14N_PHYSICAL,
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
   222
            CanonicalizerPhysical.class
f47b920867e7 8011547: Update XML Signature implementation to Apache Santuario 1.5.4
mullan
parents: 18240
diff changeset
   223
        );
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 getURI
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 the URI defined for this c14n instance.
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 final String getURI() {
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   232
        return canonicalizerSpi.engineGetURI();
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
     * Method getIncludeComments
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   237
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   238
     * @return true if the c14n respect the comments.
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
    public boolean getIncludeComments() {
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   241
        return canonicalizerSpi.engineGetIncludeComments();
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   242
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   244
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   245
     * 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
   246
     * 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
   247
     * 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
   248
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   249
     * @param inputBytes
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   250
     * @return the result of the canonicalization.
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   251
     * @throws CanonicalizationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   252
     * @throws java.io.IOException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   253
     * @throws javax.xml.parsers.ParserConfigurationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   254
     * @throws org.xml.sax.SAXException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   255
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   256
    public byte[] canonicalize(byte[] inputBytes)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   257
        throws javax.xml.parsers.ParserConfigurationException,
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   258
        java.io.IOException, org.xml.sax.SAXException, CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   259
        InputStream bais = new ByteArrayInputStream(inputBytes);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   260
        InputSource in = new InputSource(bais);
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   261
        DocumentBuilderFactory dfactory = DocumentBuilderFactory.newInstance();
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   262
        dfactory.setFeature(XMLConstants.FEATURE_SECURE_PROCESSING, Boolean.TRUE);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   264
        dfactory.setNamespaceAware(true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   266
        // needs to validate for ID attribute normalization
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   267
        dfactory.setValidating(true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   269
        DocumentBuilder db = dfactory.newDocumentBuilder();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
1337
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
         * for some of the test vectors from the specification,
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   273
         * 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
   274
         * attribute values, NMTOKENS, etc.
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   275
         * 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
   276
         * 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
   277
         * ErrorHandlers.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   278
         *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   279
         * Text from the spec:
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   280
         *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   281
         * 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
   282
         * 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
   283
         * value normalization and entity reference resolution MUST be
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   284
         * 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
   285
         * 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
   286
         * 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
   287
         * 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
   288
         * 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
   289
         * 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
   290
         * canonical form.
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
        db.setErrorHandler(new com.sun.org.apache.xml.internal.security.utils.IgnoreAllErrorHandler());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   294
        Document document = db.parse(in);
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   295
        return this.canonicalizeSubtree(document);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   296
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   298
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   299
     * Canonicalizes the subtree rooted by <CODE>node</CODE>.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   300
     *
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   301
     * @param node The node to canonicalize
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   302
     * @return the result of the c14n.
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
     * @throws CanonicalizationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   305
     */
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   306
    public byte[] canonicalizeSubtree(Node node) throws CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   307
        return canonicalizerSpi.engineCanonicalizeSubTree(node);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   308
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   310
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   311
     * Canonicalizes the subtree rooted by <CODE>node</CODE>.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   312
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   313
     * @param node
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   314
     * @param inclusiveNamespaces
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   315
     * @return the result of the c14n.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   316
     * @throws CanonicalizationException
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
    public byte[] canonicalizeSubtree(Node node, String inclusiveNamespaces)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   319
        throws CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   320
        return canonicalizerSpi.engineCanonicalizeSubTree(node, inclusiveNamespaces);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   321
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   323
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   324
     * 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
   325
     * 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
   326
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   327
     * @param xpathNodeSet
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   328
     * @return the result of the c14n.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   329
     * @throws CanonicalizationException
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
    public byte[] canonicalizeXPathNodeSet(NodeList xpathNodeSet)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   332
        throws CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   333
        return canonicalizerSpi.engineCanonicalizeXPathNodeSet(xpathNodeSet);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   334
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   336
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   337
     * 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
   338
     * 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
   339
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   340
     * @param xpathNodeSet
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   341
     * @param inclusiveNamespaces
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   342
     * @return the result of the c14n.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   343
     * @throws CanonicalizationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   344
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   345
    public byte[] canonicalizeXPathNodeSet(
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   346
        NodeList xpathNodeSet, String inclusiveNamespaces
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   347
    ) throws CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   348
        return
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   349
            canonicalizerSpi.engineCanonicalizeXPathNodeSet(xpathNodeSet, inclusiveNamespaces);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   350
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   352
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   353
     * Canonicalizes an XPath node set.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   354
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   355
     * @param xpathNodeSet
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   356
     * @return the result of the c14n.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   357
     * @throws CanonicalizationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   358
     */
10694
cf59e2badd14 7088502: Security libraries don't build with javac -Werror
mullan
parents: 1337
diff changeset
   359
    public byte[] canonicalizeXPathNodeSet(Set<Node> xpathNodeSet)
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   360
        throws CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   361
        return canonicalizerSpi.engineCanonicalizeXPathNodeSet(xpathNodeSet);
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   362
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   364
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   365
     * Canonicalizes an XPath node set.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   366
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   367
     * @param xpathNodeSet
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   368
     * @param inclusiveNamespaces
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   369
     * @return the result of the c14n.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   370
     * @throws CanonicalizationException
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   371
     */
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   372
    public byte[] canonicalizeXPathNodeSet(
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   373
        Set<Node> xpathNodeSet, String inclusiveNamespaces
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   374
    ) throws CanonicalizationException {
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   375
        return
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   376
            canonicalizerSpi.engineCanonicalizeXPathNodeSet(xpathNodeSet, inclusiveNamespaces);
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
     * Sets the writer where the canonicalization ends.  ByteArrayOutputStream
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   381
     * if none is set.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   382
     * @param os
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 void setWriter(OutputStream os) {
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   385
        canonicalizerSpi.setWriter(os);
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
     * 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
   390
     *
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   391
     * @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
   392
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   393
    public String getImplementingCanonicalizerClass() {
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   394
        return canonicalizerSpi.getClass().getName();
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   395
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   397
    /**
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   398
     * Set the canonicalizer behaviour to not reset.
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   399
     */
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   400
    public void notReset() {
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   401
        canonicalizerSpi.reset = false;
1337
e8d6cef36199 6469266: Integrate Apache XMLSec 1.4.2 into JDK 7
mullan
parents: 2
diff changeset
   402
    }
18240
cda839ac048f 6741606: Integrate Apache Santuario
mullan
parents: 10694
diff changeset
   403
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
}