Uses of Class
javax.net.ssl.SSLContext
-
Packages that use SSLContext 软件包 描述 com.sun.net.httpserver 提供一个简单的高级Http服务器API,可用于构建嵌入式HTTP服务器。javax.net.ssl 为安全套接字包提供类。javax.rmi.ssl 通过安全套接字层(SSL)或传输层安全(TLS)协议提供RMIClientSocketFactory
和RMIServerSocketFactory
的实现。jdk.incubator.http 高级HTTP和WebSocket API -
-
Uses of SSLContext in com.sun.net.httpserver
Methods in com.sun.net.httpserver that return SSLContext Modifier and Type 方法 描述 SSLContext
HttpsConfigurator. getSSLContext()
返回此HttpsConfigurator的SSLContext。Constructors in com.sun.net.httpserver with parameters of type SSLContext Constructor 描述 HttpsConfigurator(SSLContext context)
使用给定的SSLContext创建一个Https配置。 -
Uses of SSLContext in javax.net.ssl
Methods in javax.net.ssl that return SSLContext Modifier and Type 方法 描述 static SSLContext
SSLContext. getDefault()
返回默认的SSL上下文。static SSLContext
SSLContext. getInstance(String protocol)
返回实现指定安全套接字协议的SSLContext
对象。static SSLContext
SSLContext. getInstance(String protocol, String provider)
返回一个实现指定安全套接字协议的SSLContext
对象。static SSLContext
SSLContext. getInstance(String protocol, Provider provider)
返回实现指定安全套接字协议的SSLContext
对象。Methods in javax.net.ssl with parameters of type SSLContext Modifier and Type 方法 描述 static void
SSLContext. setDefault(SSLContext context)
设置默认的SSL上下文。 -
Uses of SSLContext in javax.rmi.ssl
Constructors in javax.rmi.ssl with parameters of type SSLContext Constructor 描述 SslRMIServerSocketFactory(SSLContext context, String[] enabledCipherSuites, String[] enabledProtocols, boolean needClientAuth)
创建一个新的SslRMIServerSocketFactory
与指定的SSLContext
和SSL套接字配置。 -
Uses of SSLContext in jdk.incubator.http
Methods in jdk.incubator.http that return SSLContext Modifier and Type 方法 描述 abstract SSLContext
HttpClient. sslContext()
返回SSLContext
,如果在此客户端上设置了一个。Methods in jdk.incubator.http with parameters of type SSLContext Modifier and Type 方法 描述 abstract HttpClient.Builder
HttpClient.Builder. sslContext(SSLContext sslContext)
设置一个SSLContext
。
-