mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
Fix for Issue 1956
A race condition made the outgoing certificate being compared to the old incoming mHost, throwing an exception with an untrusted certificate dialogue to accept or decline.
This commit is contained in:
parent
3fbdb0ff0e
commit
2ca76e3db0
@ -17,6 +17,8 @@ import java.security.KeyStoreException;
|
||||
import java.security.NoSuchAlgorithmException;
|
||||
import java.security.cert.CertificateException;
|
||||
import java.security.cert.X509Certificate;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
public final class TrustManagerFactory
|
||||
{
|
||||
@ -52,21 +54,30 @@ public final class TrustManagerFactory
|
||||
|
||||
private static class SecureX509TrustManager implements X509TrustManager
|
||||
{
|
||||
private String mHost;
|
||||
private static SecureX509TrustManager me;
|
||||
private static final Map<String, SecureX509TrustManager> mTrustManager =
|
||||
new HashMap<String, SecureX509TrustManager>();
|
||||
|
||||
private SecureX509TrustManager()
|
||||
private final String mHost;
|
||||
|
||||
private SecureX509TrustManager(String host)
|
||||
{
|
||||
mHost = host;
|
||||
}
|
||||
|
||||
public static X509TrustManager getInstance(String host)
|
||||
public synchronized static X509TrustManager getInstance(String host)
|
||||
{
|
||||
if (me == null)
|
||||
SecureX509TrustManager trustManager;
|
||||
if (mTrustManager.containsKey(host))
|
||||
{
|
||||
me = new SecureX509TrustManager();
|
||||
trustManager = mTrustManager.get(host);
|
||||
}
|
||||
me.mHost = host;
|
||||
return me;
|
||||
else
|
||||
{
|
||||
trustManager = new SecureX509TrustManager(host);
|
||||
mTrustManager.put(host, trustManager);
|
||||
}
|
||||
|
||||
return trustManager;
|
||||
}
|
||||
|
||||
public void checkClientTrusted(X509Certificate[] chain, String authType)
|
||||
|
Loading…
Reference in New Issue
Block a user