Package alpine.crypto
Class RelaxedSSLSocketFactory
- java.lang.Object
-
- javax.net.SocketFactory
-
- javax.net.ssl.SSLSocketFactory
-
- alpine.crypto.RelaxedSSLSocketFactory
-
public class RelaxedSSLSocketFactory extends SSLSocketFactory
-
-
Constructor Summary
Constructors Constructor Description RelaxedSSLSocketFactory()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description SocketcreateSocket(String string, int i)SocketcreateSocket(String string, int i, InetAddress ia, int i1)SocketcreateSocket(InetAddress ia, int i)SocketcreateSocket(InetAddress ia, int i, InetAddress ia1, int i1)SocketcreateSocket(Socket socket, String string, int i, boolean bln)static SocketFactorygetDefault()String[]getDefaultCipherSuites()String[]getSupportedCipherSuites()-
Methods inherited from class javax.net.ssl.SSLSocketFactory
createSocket
-
Methods inherited from class javax.net.SocketFactory
createSocket
-
-
-
-
Method Detail
-
getDefault
public static SocketFactory getDefault()
-
getDefaultCipherSuites
public String[] getDefaultCipherSuites()
- Specified by:
getDefaultCipherSuitesin classSSLSocketFactory
-
getSupportedCipherSuites
public String[] getSupportedCipherSuites()
- Specified by:
getSupportedCipherSuitesin classSSLSocketFactory
-
createSocket
public Socket createSocket(Socket socket, String string, int i, boolean bln) throws IOException
- Specified by:
createSocketin classSSLSocketFactory- Throws:
IOException
-
createSocket
public Socket createSocket(String string, int i) throws IOException, UnknownHostException
- Specified by:
createSocketin classSocketFactory- Throws:
IOExceptionUnknownHostException
-
createSocket
public Socket createSocket(String string, int i, InetAddress ia, int i1) throws IOException, UnknownHostException
- Specified by:
createSocketin classSocketFactory- Throws:
IOExceptionUnknownHostException
-
createSocket
public Socket createSocket(InetAddress ia, int i) throws IOException
- Specified by:
createSocketin classSocketFactory- Throws:
IOException
-
createSocket
public Socket createSocket(InetAddress ia, int i, InetAddress ia1, int i1) throws IOException
- Specified by:
createSocketin classSocketFactory- Throws:
IOException
-
-