Android Open Source - AndroidRestWS My S S L Socket Factory






From Project

Back to project page AndroidRestWS.

License

The source code is released under:

GNU General Public License

If you think the Android project AndroidRestWS listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.alaintxu.restws.WS;
/*from  w  w  w  .j a v a  2 s.  c om*/
import org.apache.http.conn.ssl.SSLSocketFactory;
import java.io.IOException;
import java.net.Socket;
import java.net.UnknownHostException;
import java.security.KeyManagementException;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.UnrecoverableKeyException;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;

import javax.net.ssl.SSLContext;
import javax.net.ssl.TrustManager;
import javax.net.ssl.X509TrustManager;
/**
 * Created by aperez on 22/05/14.
 * copied from http://madurangasblogs.blogspot.com.es/2013/08/avoiding-javaxnetsslsslpeerunverifiedex.html
 *
 * This class + RestWS.getNewHttpClient() function is used in order to avoid
 * 'javax.net.ssl.SSLPeerUnverifiedException: No peer certificate' error
 * using not accepted security certificates.
 */
public class MySSLSocketFactory extends SSLSocketFactory {
    SSLContext sslContext = SSLContext.getInstance("TLS");

    public MySSLSocketFactory(KeyStore truststore) throws NoSuchAlgorithmException, KeyManagementException, KeyStoreException, UnrecoverableKeyException {
        super(truststore);

        TrustManager tm = new X509TrustManager() {
            public void checkClientTrusted(X509Certificate[] chain, String authType) throws CertificateException {
            }

            public void checkServerTrusted(X509Certificate[] chain, String authType) throws CertificateException {
            }

            public X509Certificate[] getAcceptedIssuers() {
                return null;
            }
        };

        sslContext.init(null, new TrustManager[] { tm }, null);
    }

    @Override
    public Socket createSocket(Socket socket, String host, int port, boolean autoClose) throws IOException, UnknownHostException {
        return sslContext.getSocketFactory().createSocket(socket, host, port, autoClose);
    }

    @Override
    public Socket createSocket() throws IOException {
        return sslContext.getSocketFactory().createSocket();
    }
}




Java Source Code List

com.alaintxu.restws.MainActivity.java
com.alaintxu.restws.NavigationDrawerFragment.java
com.alaintxu.restws.Settings.SettingsActivity.java
com.alaintxu.restws.Settings.SettingsFunctions.java
com.alaintxu.restws.WS.MySSLSocketFactory.java
com.alaintxu.restws.WS.RestCallTask.java
com.alaintxu.restws.WS.RestWS.java
com.alaintxu.restws.dummy.DummyContent.java