Uses of Class
iaik.security.ssl.CompressionMethod

Packages that use CompressionMethod
iaik.security.ssl   
 

Uses of CompressionMethod in iaik.security.ssl
 

Subclasses of CompressionMethod in iaik.security.ssl
 class NullCompression
          This class implements the default NULL compression method specified in SSL version 3.0 (identity operation).
 

Fields in iaik.security.ssl declared as CompressionMethod
static CompressionMethod CompressionMethod.NULL_COMPRESSION
           
 

Methods in iaik.security.ssl that return CompressionMethod
 CompressionMethod SSLSocket.getActiveCompressionMethod()
           
 CompressionMethod[] SSLSocket.getPeerSupportedCompressionMethods()
           
 CompressionMethod[] SSLSocket.getClientSupportedCompressionMethods()
          Deprecated. use getPeerSupportedCompressionMethods()
 CompressionMethod[] SSLContext.getEnabledCompressionMethods()
          Returns the compression methods which are enabled in this SSLContext.
static CompressionMethod[] CompressionMethod.getDefault()
          Returns an array with the default compression methods.
 CompressionMethod SSLCommunication.getActiveCompressionMethod()
          Returns the active compression method.
 CompressionMethod[] SSLCommunication.getPeerSupportedCompressionMethods()
          Return the compression methods supported by the remote peer.
 CompressionMethod SSLTransport.getActiveCompressionMethod()
           
 CompressionMethod[] SSLTransport.getPeerSupportedCompressionMethods()
           
 CompressionMethod Session.getCompressionMethod()
           
 

Methods in iaik.security.ssl with parameters of type CompressionMethod
 void SSLContext.setEnabledCompressionMethods(CompressionMethod[] enabledCompressionMethods)
          Sets the compression methods which are enabled in this SSLContext.