Uses of Class
iaik.security.ssl.SSLContext

Packages that use SSLContext
iaik.protocol.https   
iaik.security.ssl   
 

Uses of SSLContext in iaik.protocol.https
 

Methods in iaik.protocol.https that return SSLContext
static SSLContext HttpsURLConnection.getDefaultSSLContext()
          Get the current default SSLContext.
 SSLContext HttpsURLConnection.getSSLContext()
          Get the current SSLContext for this HTTPS URLConnection.
 

Methods in iaik.protocol.https with parameters of type SSLContext
static void HttpsURLConnection.setDefaultSSLContext(SSLContext context)
          Set the default SSLContext for all HTTPS URLConnections.
 void HttpsURLConnection.setSSLContext(SSLContext context)
          Set the SSLContext to be used for this HTTPS URLConnection.
 

Uses of SSLContext in iaik.security.ssl
 

Subclasses of SSLContext in iaik.security.ssl
 class SSLClientContext
          This class extends the SSLContext to add client related information to an SSL/TLS policy.
 class SSLServerContext
          This class extends the SSLContext to add client related information to an SSL/TLS policy.
 

Fields in iaik.security.ssl declared as SSLContext
protected  SSLContext SSLTransportSpi.context
           
 

Methods in iaik.security.ssl that return SSLContext
 SSLContext SSLSocket.getContext()
           
protected  SSLContext SSLTransportSpi.engineGetContext()
          Get the SSLContext for this connection.
 SSLContext SSLCommunication.getContext()
          Returns the SSLContext of this SSLSocket.
 SSLContext SSLTransport.getContext()
           
 

Methods in iaik.security.ssl with parameters of type SSLContext
 void SSLSocket.init(java.net.Socket s, SSLContext context, boolean useClientMode)
          Initialize the SSLSocket.
static SSLSocket Utils.proxyConnect(java.net.InetAddress address, int port, SSLContext context)
          Connect to the specified host via HTTPS proxy (if set via properties).
static SSLSocket Utils.proxyConnect(java.lang.String address, int port, SSLContext context, java.net.Socket proxySocket)
          Connect to the specified host via HTTPS proxy (if set via properties).
static SSLSocket Utils.proxyConnect(java.net.InetAddress address, int port, SSLContext context, java.net.InetAddress proxyAddress, int proxyPort)
           
 

Constructors in iaik.security.ssl with parameters of type SSLContext
SSLSocket.SSLSocket(java.net.Socket socket, SSLContext context)
          Create an SSLSocket from an existing socket.
SSLSocket.SSLSocket(java.lang.String host, int port, SSLContext context)
          Creates a SSL stream socket and connects it to the specified port number on the named host.
SSLSocket.SSLSocket(java.net.InetAddress address, int port, SSLContext context)
          Creates a SSL stream socket and connects it to the specified port number at the specified IP address.
SSLSocket.SSLSocket(java.lang.String host, int port, java.net.InetAddress localAddr, int localPort, SSLContext context)
          Creates a SSL socket and connects it to the specified remote host on the specified remote port.
SSLSocket.SSLSocket(java.net.InetAddress address, int port, java.net.InetAddress localAddr, int localPort, SSLContext context)
          Creates a SSL socket and connects it to the specified remote address on the specified remote port.
SSLSocket.SSLSocket(java.net.Socket socket, SSLContext context, java.lang.String address, int port)
           
SSLTransportSpi.SSLTransportSpi(SSLContext context, boolean useClientMode)
           
SSLSocketTransport.SSLSocketTransport(java.net.Socket socket, SSLContext context, boolean useClientMode)