-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
142 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
77 changes: 77 additions & 0 deletions
77
bvcommon/src/main/java/com/bazaarvoice/bvandroidsdk/TLSSocketFactory.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
package com.bazaarvoice.bvandroidsdk; | ||
|
||
import java.io.IOException; | ||
import java.net.InetAddress; | ||
import java.net.Socket; | ||
import java.net.UnknownHostException; | ||
import java.security.KeyManagementException; | ||
import java.security.NoSuchAlgorithmException; | ||
|
||
import javax.net.ssl.SSLContext; | ||
import javax.net.ssl.SSLSocket; | ||
import javax.net.ssl.SSLSocketFactory; | ||
|
||
class TLSSocketFactory extends SSLSocketFactory { | ||
|
||
private SSLSocketFactory delegate; | ||
private static final String[] SUPPORTED_PROTOCOLS = {"TLSv1.2"}; | ||
|
||
|
||
TLSSocketFactory(SSLSocketFactory base) throws KeyManagementException, NoSuchAlgorithmException { | ||
SSLContext context = SSLContext.getInstance("TLS"); | ||
context.init(null, null, null); | ||
delegate = base; | ||
} | ||
|
||
@Override | ||
public String[] getDefaultCipherSuites() { | ||
return delegate.getDefaultCipherSuites(); | ||
} | ||
|
||
@Override | ||
public String[] getSupportedCipherSuites() { | ||
return delegate.getSupportedCipherSuites(); | ||
} | ||
|
||
@Override | ||
public Socket createSocket() throws IOException { | ||
return enableTLSOnSocket(delegate.createSocket()); | ||
} | ||
|
||
|
||
@Override | ||
public Socket createSocket(Socket s, String host, int port, boolean autoClose) throws IOException { | ||
return enableTLSOnSocket(delegate.createSocket(s, host, port, autoClose)); | ||
} | ||
|
||
@Override | ||
public Socket createSocket(String host, int port) throws IOException, UnknownHostException { | ||
return enableTLSOnSocket(delegate.createSocket(host, port)); | ||
|
||
} | ||
|
||
@Override | ||
public Socket createSocket(String host, int port, InetAddress localHost, int localPort) throws IOException, UnknownHostException { | ||
return enableTLSOnSocket(delegate.createSocket(host, port, localHost, localPort)); | ||
} | ||
|
||
@Override | ||
public Socket createSocket(InetAddress host, int port) throws IOException { | ||
return enableTLSOnSocket(delegate.createSocket(host, port)); | ||
} | ||
|
||
@Override | ||
public Socket createSocket(InetAddress address, int port, InetAddress localAddress, int localPort) throws IOException { | ||
return enableTLSOnSocket(delegate.createSocket(address, port, localAddress, localPort)); | ||
} | ||
|
||
/** | ||
* Enable Supported Protocols: TLS1.2 | ||
*/ | ||
private Socket enableTLSOnSocket(Socket socket) { | ||
if (socket != null && (socket instanceof SSLSocket)) { | ||
((SSLSocket) socket).setEnabledProtocols(SUPPORTED_PROTOCOLS); | ||
} | ||
return socket; | ||
} | ||
} |