I've looked everywhere on the internet and while some people claim to have found the solution, it either does not work or there is no sample code to back it up.
Does anyone know how to accept a self signed cert in Java on the Android?
A code sample would be perfect.

link|improve this question

feedback

4 Answers

up vote 17 down vote accepted

I have this functionality in exchangeIt, which connects to Microsoft exchange via WebDav. Here's some code to create an HttpClient which will connect to self signed cert's via SSL:

SchemeRegistry schemeRegistry = new SchemeRegistry();
// http scheme
schemeRegistry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
// https scheme
schemeRegistry.register(new Scheme("https", new EasySSLSocketFactory(), 443));

HttpParams params = new BasicHttpParams();
params.setParameter(ConnManagerPNames.MAX_TOTAL_CONNECTIONS, 30);
params.setParameter(ConnManagerPNames.MAX_CONNECTIONS_PER_ROUTE, new ConnPerRouteBean(30));
params.setParameter(HttpProtocolParams.USE_EXPECT_CONTINUE, false);
HttpProtocolParams.setVersion(params, HttpVersion.HTTP_1_1);

ClientConnectionManager cm = new ThreadSafeClientConnManager(params, schemeRegistry);

The EasySSLSocketFactory is here, and the EasyX509TrustManager is here.

The code for exchangeIt is open source, and hosted on googlecode here, if you have any issues. I'm not actively working on it anymore, but the code should work.

Note that since Android 2.2 the process has changed a bit, so check this to make the code above work.

link|improve this answer
Your the best! Thanks, ill implement it really soon! – Faisal Abid Aug 1 '09 at 18:26
I can't get this to work. I keep getting IOException: SSL handshake failure: I/O error during system call, Broken pipe on 2.2. Do you happen to know a way around this? – Felix Nov 1 '10 at 14:37
2  
I don't like trusting ANY self-signed certificate. Is there a way to add a Certificate Authority so as to prevent Man-in-the-middle attacks? – Nicolas Marchildon Jan 26 '11 at 14:49
This worked like magic.... – Krishna Feb 3 at 4:38
are the three params.setParameter() required ? The third one will require use of HTTP 1.1 – Someone Somewhere Mar 14 at 22:21
show 1 more comment
feedback

Here's another way, without any extra classes:

import java.security.SecureRandom;
import java.security.cert.CertificateException;
import java.security.cert.X509Certificate;

import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSession;
import javax.net.ssl.X509TrustManager;

private void trustEveryone() {
	try {
		HttpsURLConnection.setDefaultHostnameVerifier(new HostnameVerifier(){
    			public boolean verify(String hostname, SSLSession session) {
    				return true;
    			}});
		SSLContext context = SSLContext.getInstance("TLS");
		context.init(null, new X509TrustManager[]{new X509TrustManager(){
			public void checkClientTrusted(X509Certificate[] chain,
					String authType) throws CertificateException {}
			public void checkServerTrusted(X509Certificate[] chain,
					String authType) throws CertificateException {}
			public X509Certificate[] getAcceptedIssuers() {
				return new X509Certificate[0];
			}}}, new SecureRandom());
		HttpsURLConnection.setDefaultSSLSocketFactory(
				context.getSocketFactory());
	} catch (Exception e) { // should never happen
		e.printStackTrace();
	}
}
link|improve this answer
Where would you call this method? – Faisal Abid Oct 22 '09 at 17:26
4  
You would call it anywhere before opening an https connection. Any connection using URL.openConnection / HttpsURLConnection should be affected. – Chris Boyle Oct 26 '09 at 8:45
I could not get any solution to work, except this. It's a terrible hack but thanks. – sgarman May 18 '11 at 21:44
1  
Readers should note that this technique is radically insecure. SSL is not secure unless at least one peer is authenticated. See RFC 2246. – EJP May 8 at 11:55
feedback

Brian Yarger's answer works in Android 2.2 as well if you modify the bigger createSocket method overload as follows. It took me a while to get self-signed SSLs working.

    public Socket createSocket(Socket socket, String host, int port, boolean autoClose) throws IOException, UnknownHostException {
    return getSSLContext().getSocketFactory().createSocket(socket, host, port, autoClose);
}
link|improve this answer
feedback

For Android HttpProtocolParams accepts ProtocolVersion rather than HttpVersion. Hope this helps.

ProtocolVersion pv = new ProtocolVersion("HTTP", 1, 1);
HttpProtocolParams.setVersion(params, pv);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.