How do I initialize a TrustManagerFactory with multiple sources of trust?

后端 未结 6 1388
伪装坚强ぢ
伪装坚强ぢ 2020-12-25 15:42

My application has a personal keystore containing trusted self-signed certificates for use in the local network - say mykeystore.jks. I wish to be able to conne

相关标签:
6条回答
  • 2020-12-25 15:48

    Although this question is 6 years old, I want to share my solution for this challenge. It uses the same code snippet under the covers from Cody A. Ray which Hugh Jeffner also shared.

    SSLFactory sslFactory = SSLFactory.builder()
        .withDefaultTrustMaterial() // --> uses the JDK trusted certificates
        .withTrustMaterial("/path/to/mykeystore.jks", "password".toCharArray())
        .build();
    
    HttpsURLConnection.setDefaultSSLSocketFactory(sslFactory.getSslSocketFactory());
    

    During the ssl handshake process it will first check if the server certificate is present in the jdk trusted certificates, if not it will continue by also checking your custom keystore and if it doesn't find a match it will fail. You can even further chain it with more custom keystores, or pem files, or list of certificates etc. See here for other configurations: other possible configurations

    This library is maintained by me and you can find it here: https://github.com/Hakky54/sslcontext-kickstart

    0 讨论(0)
  • 2020-12-25 15:50

    In trustMgrFactory.init(keystore); you're configuring defaultTrustManager with your own personal keystore, not the system default keystore.

    Based on reading the source code for sun.security.ssl.TrustManagerFactoryImpl, it looks like trustMgrFactory.init((KeyStore) null); would do exactly what you need (load the system default keystore), and based on quick testing, it seems to work for me.

    0 讨论(0)
  • 2020-12-25 16:01

    The answer here is how I came to understand how to do this. If you just want to accept the system CA certs plus a custom keystore of certs I simplified it into a single class with some convenience methods. Full code available here:

    https://gist.github.com/HughJeffner/6eac419b18c6001aeadb

    KeyStore keystore; // Get your own keystore here
    SSLContext sslContext = SSLContext.getInstance("TLS");
    TrustManager[] tm = CompositeX509TrustManager.getTrustManagers(keystore);
    sslContext.init(null, tm, null);
    
    0 讨论(0)
  • 2020-12-25 16:04
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.Iterables;
    
    import java.security.KeyStore;
    import java.security.KeyStoreException;
    import java.security.NoSuchAlgorithmException;
    import java.security.cert.CertificateException;
    import java.security.cert.X509Certificate;
    import java.util.Arrays;
    import java.util.List;
    
    import javax.net.ssl.SSLContext;
    import javax.net.ssl.TrustManager;
    import javax.net.ssl.TrustManagerFactory;
    import javax.net.ssl.X509TrustManager;
    
    /**
     * Represents an ordered list of {@link X509TrustManager}s with additive trust. If any one of the composed managers
     * trusts a certificate chain, then it is trusted by the composite manager.
     *
     * This is necessary because of the fine-print on {@link SSLContext#init}: Only the first instance of a particular key
     * and/or trust manager implementation type in the array is used. (For example, only the first
     * javax.net.ssl.X509KeyManager in the array will be used.)
     *
     * @author codyaray
     * @since 4/22/2013
     * @see <a href="http://stackoverflow.com/questions/1793979/registering-multiple-keystores-in-jvm">
     *     http://stackoverflow.com/questions/1793979/registering-multiple-keystores-in-jvm
     *     </a>
     */
    @SuppressWarnings("unused")
    public class CompositeX509TrustManager implements X509TrustManager {
    
        private final List<X509TrustManager> trustManagers;
    
        public CompositeX509TrustManager(List<X509TrustManager> trustManagers) {
            this.trustManagers = ImmutableList.copyOf(trustManagers);
        }
    
        public CompositeX509TrustManager(KeyStore keystore) {
    
            this.trustManagers = ImmutableList.of(getDefaultTrustManager(), getTrustManager(keystore));
    
        }
    
        @Override
        public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
            for (X509TrustManager trustManager : trustManagers) {
                try {
                    trustManager.checkClientTrusted(chain, authType);
                    return; // someone trusts them. success!
                } catch (CertificateException e) {
                    // maybe someone else will trust them
                }
            }
            throw new CertificateException("None of the TrustManagers trust this certificate chain");
        }
    
        @Override
        public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {
            for (X509TrustManager trustManager : trustManagers) {
                try {
                    trustManager.checkServerTrusted(chain, authType);
                    return; // someone trusts them. success!
                } catch (CertificateException e) {
                    // maybe someone else will trust them
                }
            }
            throw new CertificateException("None of the TrustManagers trust this certificate chain");
        }
    
        @Override
        public X509Certificate[] getAcceptedIssuers() {
            ImmutableList.Builder<X509Certificate> certificates = ImmutableList.builder();
            for (X509TrustManager trustManager : trustManagers) {
                for (X509Certificate cert : trustManager.getAcceptedIssuers()) {
                    certificates.add(cert);
                }
            }
            return Iterables.toArray(certificates.build(), X509Certificate.class);
        }
    
        public static TrustManager[] getTrustManagers(KeyStore keyStore) {
    
            return new TrustManager[] { new CompositeX509TrustManager(keyStore) };
    
        }
    
        public static X509TrustManager getDefaultTrustManager() {
    
            return getTrustManager(null);
    
        }
    
        public static X509TrustManager getTrustManager(KeyStore keystore) {
    
            return getTrustManager(TrustManagerFactory.getDefaultAlgorithm(), keystore);
    
        }
    
        public static X509TrustManager getTrustManager(String algorithm, KeyStore keystore) {
    
            TrustManagerFactory factory;
    
            try {
                factory = TrustManagerFactory.getInstance(algorithm);
                factory.init(keystore);
                return Iterables.getFirst(Iterables.filter(
                        Arrays.asList(factory.getTrustManagers()), X509TrustManager.class), null);
            } catch (NoSuchAlgorithmException | KeyStoreException e) {
                e.printStackTrace();
            }
    
            return null;
    
        }
    
    }
    
    0 讨论(0)
  • 2020-12-25 16:10

    For Android developers, this can be much easier. In summary, you can add a xml res file to config your custom certs.

    Step 1: open your manifest xml add an attribute.

    <manifest ... >
        <application android:networkSecurityConfig="@xml/network_security_config"
                        ... >
            ...
        </application>
    </manifest>
    

    Step 2: Add network_security_config.xml to res/xml, config certs as you want.

    <?xml version="1.0" encoding="utf-8"?>
    <network-security-config>
        <base-config>
            <trust-anchors>
                <certificates src="@raw/extracas"/>
                <certificates src="system"/>
            </trust-anchors>
        </base-config>
    </network-security-config>
    

    Note: this xml can support many other usage, and this solution only works on api24+.

    Official reference: here

    0 讨论(0)
  • 2020-12-25 16:13

    I've run into the same issue with Commons HttpClient. Working solution for my case was to create delegation chain for PKIX TrustManagers in following way:

    public class TrustManagerDelegate implements X509TrustManager {
        private final X509TrustManager mainTrustManager;
        private final X509TrustManager trustManager;
        private final TrustStrategy trustStrategy;
    
        public TrustManagerDelegate(X509TrustManager mainTrustManager, X509TrustManager trustManager, TrustStrategy trustStrategy) {
            this.mainTrustManager = mainTrustManager;
            this.trustManager = trustManager;
            this.trustStrategy = trustStrategy;
        }
    
        @Override
        public void checkClientTrusted(
                final X509Certificate[] chain, final String authType) throws CertificateException {
            this.trustManager.checkClientTrusted(chain, authType);
        }
    
        @Override
        public void checkServerTrusted(
                final X509Certificate[] chain, final String authType) throws CertificateException {
            if (!this.trustStrategy.isTrusted(chain, authType)) {
                try {
                    mainTrustManager.checkServerTrusted(chain, authType);
                } catch (CertificateException ex) {
                    this.trustManager.checkServerTrusted(chain, authType);
                }
            }
        }
    
        @Override
        public X509Certificate[] getAcceptedIssuers() {
            return this.trustManager.getAcceptedIssuers();
        }
    
    }
    

    And initialize HttpClient in following way (yes it's ugly):

    final SSLContext sslContext;
    try {
        sslContext = SSLContext.getInstance("TLS");
        final TrustManagerFactory javaDefaultTrustManager = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
        javaDefaultTrustManager.init((KeyStore)null);
        final TrustManagerFactory customCaTrustManager = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
        customCaTrustManager.init(getKeyStore());
    
        sslContext.init(
            null,
            new TrustManager[]{
                new TrustManagerDelegate(
                        (X509TrustManager)customCaTrustManager.getTrustManagers()[0],
                        (X509TrustManager)javaDefaultTrustManager.getTrustManagers()[0],
                        new TrustSelfSignedStrategy()
                )
            },
            secureRandom
        );
    
    } catch (final NoSuchAlgorithmException ex) {
        throw new SSLInitializationException(ex.getMessage(), ex);
    } catch (final KeyManagementException ex) {
        throw new SSLInitializationException(ex.getMessage(), ex);
    }
    
    SSLConnectionSocketFactory sslSocketFactory = new SSLConnectionSocketFactory(sslContext);
    
    PoolingHttpClientConnectionManager cm = new PoolingHttpClientConnectionManager(
            RegistryBuilder.<ConnectionSocketFactory>create()
                    .register("http", PlainConnectionSocketFactory.getSocketFactory())
                    .register("https", sslSocketFactory)
                    .build()
    );
    //maximum parallel requests is 500
    cm.setMaxTotal(500);
    cm.setDefaultMaxPerRoute(500);
    
    CredentialsProvider cp = new BasicCredentialsProvider();
    cp.setCredentials(
            new AuthScope(apiSettings.getIdcApiUrl(), 443),
            new UsernamePasswordCredentials(apiSettings.getAgencyId(), apiSettings.getAgencyPassword())
    );
    
    client = HttpClients.custom()
                        .setConnectionManager(cm)
                        .build();
    

    In your case with simple HttpsURLConnection you may get by with simplified version of delegating class:

    public class TrustManagerDelegate implements X509TrustManager {
        private final X509TrustManager mainTrustManager;
        private final X509TrustManager trustManager;
    
        public TrustManagerDelegate(X509TrustManager mainTrustManager, X509TrustManager trustManager) {
            this.mainTrustManager = mainTrustManager;
            this.trustManager = trustManager;
        }
    
        @Override
        public void checkClientTrusted(
                final X509Certificate[] chain, final String authType) throws CertificateException {
            this.trustManager.checkClientTrusted(chain, authType);
        }
    
        @Override
        public void checkServerTrusted(
                final X509Certificate[] chain, final String authType) throws CertificateException {
            try {
                mainTrustManager.checkServerTrusted(chain, authType);
            } catch (CertificateException ex) {
                this.trustManager.checkServerTrusted(chain, authType);
            }
        }
    
        @Override
        public X509Certificate[] getAcceptedIssuers() {
            return this.trustManager.getAcceptedIssuers();
        }
    
    }
    
    0 讨论(0)
提交回复
热议问题