Fix hostname verifier for Exchange connections.

When the socketfactory init code was moved, I forgot to re-add in the check
to skip hostname verification. This made "Trust all SSL certificates"
checkbox useless.

Bug: 5450563
Change-Id: Ie4cba749aaf8c0fd9f9c43f09ebf354c6600d4f0
This commit is contained in:
Ben Komalo 2011-10-12 13:41:59 -07:00
parent 2949d48f1d
commit 4d3f3f3ab9
1 changed files with 5 additions and 1 deletions

View File

@ -74,7 +74,11 @@ public class SSLUtils {
if (keyManager != null) {
underlying.setKeyManagers(new KeyManager[] { keyManager });
}
return new SSLSocketFactory(underlying);
SSLSocketFactory wrapped = new SSLSocketFactory(underlying);
if (insecure) {
wrapped.setHostnameVerifier(SSLSocketFactory.ALLOW_ALL_HOSTNAME_VERIFIER);
}
return wrapped;
}
/**