jdk/src/share/classes/sun/security/ssl/TrustManagerFactoryImpl.java
author ohair
Wed, 06 Apr 2011 22:06:11 -0700
changeset 9035 1255eb81cc2f
parent 7990 57019dc81b66
child 10125 c70d99150c40
permissions -rw-r--r--
7033660: Update copyright year to 2011 on any files changed in 2011 Reviewed-by: dholmes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
9035
1255eb81cc2f 7033660: Update copyright year to 2011 on any files changed in 2011
ohair
parents: 7990
diff changeset
     2
 * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.security.ssl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.util.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.math.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.security.cert.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import javax.net.ssl.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.security.spec.AlgorithmParameterSpec;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import sun.security.validator.Validator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
abstract class TrustManagerFactoryImpl extends TrustManagerFactorySpi {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    private static final Debug debug = Debug.getInstance("ssl");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    private X509TrustManager trustManager = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    private boolean isInitialized = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
    TrustManagerFactoryImpl() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        // empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    protected void engineInit(KeyStore ks) throws KeyStoreException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        if (ks == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
                ks = getCacertsKeyStore("trustmanager");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
            } catch (SecurityException se) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
                // eat security exceptions but report other throwables
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
                if (debug != null && Debug.isOn("trustmanager")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
                    System.out.println(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
                        "SunX509: skip default keystore: " + se);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
            } catch (Error err) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
                if (debug != null && Debug.isOn("trustmanager")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
                    System.out.println(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                        "SunX509: skip default keystore: " + err);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                throw err;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
            } catch (RuntimeException re) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
                if (debug != null && Debug.isOn("trustmanager")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                    System.out.println(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
                        "SunX509: skip default keystore: " + re);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
                throw re;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
                if (debug != null && Debug.isOn("trustmanager")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
                    System.out.println(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
                        "SunX509: skip default keystore: " + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                throw new KeyStoreException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
                    "problem accessing trust store" + e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        trustManager = getInstance(ks);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        isInitialized = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    abstract X509TrustManager getInstance(KeyStore ks) throws KeyStoreException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    abstract X509TrustManager getInstance(ManagerFactoryParameters spec)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
            throws InvalidAlgorithmParameterException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    protected void engineInit(ManagerFactoryParameters spec) throws
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            InvalidAlgorithmParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        trustManager = getInstance(spec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        isInitialized = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * Returns one trust manager for each type of trust material.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    protected TrustManager[] engineGetTrustManagers() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        if (!isInitialized) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            throw new IllegalStateException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
                        "TrustManagerFactoryImpl is not initialized");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        return new TrustManager[] { trustManager };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * Try to get an InputStream based on the file we pass in.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    private static FileInputStream getFileInputStream(final File file)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        return AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                new PrivilegedExceptionAction<FileInputStream>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                    public FileInputStream run() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
                        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
                            if (file.exists()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                                return new FileInputStream(file);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
                        } catch (FileNotFoundException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                            // couldn't find it, oh well.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
                            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * Returns the keystore with the configured CA certificates.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    static KeyStore getCacertsKeyStore(String dbgname) throws Exception
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        String storeFileName = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        File storeFile = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        FileInputStream fis = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        String defaultTrustStoreType;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        String defaultTrustStoreProvider;
7990
57019dc81b66 7012003: diamond conversion for ssl
smarks
parents: 7043
diff changeset
   137
        final HashMap<String,String> props = new HashMap<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        final String sep = File.separator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        KeyStore ks = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        AccessController.doPrivileged(new PrivilegedExceptionAction<Void>() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            public Void run() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
                props.put("trustStore", System.getProperty(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
                                "javax.net.ssl.trustStore"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
                props.put("javaHome", System.getProperty(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                                        "java.home"));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                props.put("trustStoreType", System.getProperty(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                                "javax.net.ssl.trustStoreType",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                                KeyStore.getDefaultType()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                props.put("trustStoreProvider", System.getProperty(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                                "javax.net.ssl.trustStoreProvider", ""));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                props.put("trustStorePasswd", System.getProperty(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                                "javax.net.ssl.trustStorePassword", ""));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
         * Try:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
         *      javax.net.ssl.trustStore  (if this variable exists, stop)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
         *      jssecacerts
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
         *      cacerts
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
         * If none exists, we use an empty keystore.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        storeFileName = props.get("trustStore");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        if (!"NONE".equals(storeFileName)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            if (storeFileName != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                storeFile = new File(storeFileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                fis = getFileInputStream(storeFile);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                String javaHome = props.get("javaHome");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
                storeFile = new File(javaHome + sep + "lib" + sep
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
                                                + "security" + sep +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
                                                "jssecacerts");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
                if ((fis = getFileInputStream(storeFile)) == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
                    storeFile = new File(javaHome + sep + "lib" + sep
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
                                                + "security" + sep +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
                                                "cacerts");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
                    fis = getFileInputStream(storeFile);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
            if (fis != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
                storeFileName = storeFile.getPath();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                storeFileName = "No File Available, using empty keystore.";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        defaultTrustStoreType = props.get("trustStoreType");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
        defaultTrustStoreProvider = props.get("trustStoreProvider");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        if (debug != null && Debug.isOn(dbgname)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
            System.out.println("trustStore is: " + storeFileName);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
            System.out.println("trustStore type is : " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
                                defaultTrustStoreType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
            System.out.println("trustStore provider is : " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
                                defaultTrustStoreProvider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
         * Try to initialize trust store.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        if (defaultTrustStoreType.length() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            if (debug != null && Debug.isOn(dbgname)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
                System.out.println("init truststore");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
            if (defaultTrustStoreProvider.length() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                ks = KeyStore.getInstance(defaultTrustStoreType);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
                ks = KeyStore.getInstance(defaultTrustStoreType,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
                                        defaultTrustStoreProvider);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
            char[] passwd = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
            String defaultTrustStorePassword = props.get("trustStorePasswd");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            if (defaultTrustStorePassword.length() != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
                passwd = defaultTrustStorePassword.toCharArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
            // if trustStore is NONE, fis will be null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            ks.load(fis, passwd);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            // Zero out the temporary password storage
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
            if (passwd != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                for (int i = 0; i < passwd.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                    passwd[i] = (char)0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        if (fis != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            fis.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
        return ks;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
    public static final class SimpleFactory extends TrustManagerFactoryImpl {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        X509TrustManager getInstance(KeyStore ks) throws KeyStoreException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            return new X509TrustManagerImpl(Validator.TYPE_SIMPLE, ks);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        X509TrustManager getInstance(ManagerFactoryParameters spec)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
                throws InvalidAlgorithmParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            throw new InvalidAlgorithmParameterException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                ("SunX509 TrustManagerFactory does not use "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
                + "ManagerFactoryParameters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
    public static final class PKIXFactory extends TrustManagerFactoryImpl {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        X509TrustManager getInstance(KeyStore ks) throws KeyStoreException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
            return new X509TrustManagerImpl(Validator.TYPE_PKIX, ks);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
        X509TrustManager getInstance(ManagerFactoryParameters spec)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
                throws InvalidAlgorithmParameterException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
            if (spec instanceof CertPathTrustManagerParameters == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                throw new InvalidAlgorithmParameterException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
                    ("Parameters must be CertPathTrustManagerParameters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
            CertPathParameters params =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
                ((CertPathTrustManagerParameters)spec).getParameters();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
            if (params instanceof PKIXBuilderParameters == false) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
                throw new InvalidAlgorithmParameterException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
                    ("Encapsulated parameters must be PKIXBuilderParameters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
            PKIXBuilderParameters pkixParams = (PKIXBuilderParameters)params;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
            return new X509TrustManagerImpl(Validator.TYPE_PKIX, pkixParams);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
}