Uses of Class
javax.net.ssl.SSLParameters
| Package | Description |
|---|---|
| javax.net.ssl |
This package provides classes and interfaces needed to use the Secure
Sockets Layer (SSL) protocol and the successor Transport Layer
Security (TLS) protocol.
|
-
Uses of SSLParameters in javax.net.ssl
Methods in javax.net.ssl that return SSLParameters Modifier and Type Method Description protected SSLParametersSSLContextSpi. engineGetDefaultSSLParameters()Returns a new SSLParameters instance that includes the default SSL handshake parameters values including cipher suites, protocols, and client authentication.protected SSLParametersSSLContextSpi. engineGetSupportedSSLParameters()Returns a new SSLParameters instance that includes all supported cipher suites and protocols.SSLParametersSSLContext. getDefaultSSLParameters()Returns the default SSL handshake parameters for SSLSockets created by this SSLContext.SSLParametersSSLEngine. getSSLParameters()Returns a new SSLParameters based on this SSLSocket's current cipher suites, protocols, and client authentication settings.SSLParametersSSLSocket. getSSLParameters()Returns a new SSLParameters based on this SSLSocket's current cipher suites, protocols, and client authentication settings.SSLParametersSSLContext. getSupportedSSLParameters()Returns SSL handshake parameters for SSLSockets that includes all supported cipher suites and protocols.Methods in javax.net.ssl with parameters of type SSLParameters Modifier and Type Method Description voidSSLEngine. setSSLParameters(SSLParameters p)Sets various SSL handshake parameters based on the SSLParameter argument.voidSSLSocket. setSSLParameters(SSLParameters p)Sets various SSL handshake parameters based on the SSLParameter argument.