Merge branch 'tls-1.2-support' into 'master'
TLS 1.2 support At long last, there is a tested version of NetCipher that supports SNI. This uses that release to enable good TLS support and Tor for all repos. This moves the HTTP tests to the emulator, so that things are tested on the actual OS. See merge request !398
This commit is contained in:
commit
a5746c03f3
@ -26,7 +26,7 @@ dependencies {
|
|||||||
compile 'com.google.zxing:core:3.2.1'
|
compile 'com.google.zxing:core:3.2.1'
|
||||||
compile 'eu.chainfire:libsuperuser:1.0.0.201602271131'
|
compile 'eu.chainfire:libsuperuser:1.0.0.201602271131'
|
||||||
compile 'cc.mvdan.accesspoint:library:0.2.0'
|
compile 'cc.mvdan.accesspoint:library:0.2.0'
|
||||||
compile 'info.guardianproject.netcipher:netcipher:1.2.1'
|
compile 'info.guardianproject.netcipher:netcipher:2.0.0-alpha1'
|
||||||
compile 'commons-io:commons-io:2.5'
|
compile 'commons-io:commons-io:2.5'
|
||||||
compile 'commons-net:commons-net:3.5'
|
compile 'commons-net:commons-net:3.5'
|
||||||
compile 'org.openhab.jmdns:jmdns:3.4.2'
|
compile 'org.openhab.jmdns:jmdns:3.4.2'
|
||||||
@ -103,7 +103,7 @@ if (!hasProperty('sourceDeps')) {
|
|||||||
'com.madgag.spongycastle:prov:029f26cd6b67c06ffa05702d426d472c141789001bcb15b7262ed86c868e5643',
|
'com.madgag.spongycastle:prov:029f26cd6b67c06ffa05702d426d472c141789001bcb15b7262ed86c868e5643',
|
||||||
'com.nostra13.universalimageloader:universal-image-loader:dbd5197ffec3a8317533190870a7c00ff3750dd6a31241448c6a5522d51b65b4',
|
'com.nostra13.universalimageloader:universal-image-loader:dbd5197ffec3a8317533190870a7c00ff3750dd6a31241448c6a5522d51b65b4',
|
||||||
'eu.chainfire:libsuperuser:018344ff19ee94d252c14b4a503ee8b519184db473a5af83513f5837c413b128',
|
'eu.chainfire:libsuperuser:018344ff19ee94d252c14b4a503ee8b519184db473a5af83513f5837c413b128',
|
||||||
'info.guardianproject.netcipher:netcipher:611ec5bde9d799fd57e1efec5c375f9f460de2cdda98918541decc9a7d02f2ad',
|
'info.guardianproject.netcipher:netcipher:eeeb5d0d95ccfe176b4296cbd71a9a24c6efb0bab5c4025a8c6bc36abdddfc75',
|
||||||
'io.reactivex:rxandroid:35c1a90f8c1f499db3c1f3d608e1f191ac8afddb10c02dd91ef04c03a0a4bcda',
|
'io.reactivex:rxandroid:35c1a90f8c1f499db3c1f3d608e1f191ac8afddb10c02dd91ef04c03a0a4bcda',
|
||||||
'io.reactivex:rxjava:2c162afd78eba217cdfee78b60e85d3bfb667db61e12bc95e3cf2ddc5beeadf6',
|
'io.reactivex:rxjava:2c162afd78eba217cdfee78b60e85d3bfb667db61e12bc95e3cf2ddc5beeadf6',
|
||||||
'org.openhab.jmdns:jmdns:7a4b34b5606bbd2aff7fdfe629edcb0416fccd367fb59a099f210b9aba4f0bce',
|
'org.openhab.jmdns:jmdns:7a4b34b5606bbd2aff7fdfe629edcb0416fccd367fb59a099f210b9aba4f0bce',
|
||||||
|
@ -22,6 +22,8 @@ public class HttpDownloaderTest {
|
|||||||
"https://f-droid.org/repo/index.jar",
|
"https://f-droid.org/repo/index.jar",
|
||||||
// sites that use SNI for HTTPS
|
// sites that use SNI for HTTPS
|
||||||
"https://guardianproject.info/fdroid/repo/index.jar",
|
"https://guardianproject.info/fdroid/repo/index.jar",
|
||||||
|
//"https://microg.org/fdroid/repo/index.jar",
|
||||||
|
//"https://grobox.de/fdroid/repo/index.jar",
|
||||||
};
|
};
|
||||||
|
|
||||||
private boolean receivedProgress;
|
private boolean receivedProgress;
|
@ -16,8 +16,6 @@ import java.net.HttpURLConnection;
|
|||||||
import java.net.MalformedURLException;
|
import java.net.MalformedURLException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
|
|
||||||
import javax.net.ssl.HttpsURLConnection;
|
|
||||||
|
|
||||||
import info.guardianproject.netcipher.NetCipher;
|
import info.guardianproject.netcipher.NetCipher;
|
||||||
|
|
||||||
public class HttpDownloader extends Downloader {
|
public class HttpDownloader extends Downloader {
|
||||||
@ -117,13 +115,6 @@ public class HttpDownloader extends Downloader {
|
|||||||
connection = NetCipher.getHttpURLConnection(sourceUrl);
|
connection = NetCipher.getHttpURLConnection(sourceUrl);
|
||||||
}
|
}
|
||||||
|
|
||||||
// workaround until NetCipher supports HTTPS SNI
|
|
||||||
// https://gitlab.com/fdroid/fdroidclient/issues/431
|
|
||||||
if (connection instanceof HttpsURLConnection
|
|
||||||
&& !"f-droid.org".equals(sourceUrl.getHost())) {
|
|
||||||
((HttpsURLConnection) connection).setSSLSocketFactory(HttpsURLConnection.getDefaultSSLSocketFactory());
|
|
||||||
}
|
|
||||||
|
|
||||||
if (username != null && password != null) {
|
if (username != null && password != null) {
|
||||||
// add authorization header from username / password if set
|
// add authorization header from username / password if set
|
||||||
String authString = username + ":" + password;
|
String authString = username + ":" + password;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user