Uses of Interface
javax.net.ssl.TrustManager
| 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.
|
| org.conscrypt |
-
Uses of TrustManager in javax.net.ssl
Subinterfaces of TrustManager in javax.net.ssl Modifier and Type Interface Description interfaceX509TrustManagerThe trust manager for X509 certificates to be used to perform authentication for secure sockets.Methods in javax.net.ssl that return TrustManager Modifier and Type Method Description protected abstract TrustManager[]TrustManagerFactorySpi. engineGetTrustManagers()Returns the list ofTrustManagers with one entry for each type of trust material.TrustManager[]TrustManagerFactory. getTrustManagers()Returns the list ofTrustManagers with one entry for each type of trust material.Methods in javax.net.ssl with parameters of type TrustManager Modifier and Type Method Description protected abstract voidSSLContextSpi. engineInit(KeyManager[] km, TrustManager[] tm, SecureRandom sr)Initializes thisSSLContextinstance.voidSSLContext. init(KeyManager[] km, TrustManager[] tm, SecureRandom sr)Initializes thisSSLContextinstance. -
Uses of TrustManager in org.conscrypt
Classes in org.conscrypt that implement TrustManager Modifier and Type Class Description classTrustManagerImplTrustManager implementation.Methods in org.conscrypt that return TrustManager Modifier and Type Method Description TrustManager[]TrustManagerFactoryImpl. engineGetTrustManagers()Methods in org.conscrypt with parameters of type TrustManager Modifier and Type Method Description voidDefaultSSLContextImpl. engineInit(KeyManager[] kms, TrustManager[] tms, SecureRandom sr)voidSSLContextImpl. engineInit(KeyManager[] kms, TrustManager[] tms, SecureRandom sr)Initializes thisSSLContextinstance.Constructors in org.conscrypt with parameters of type TrustManager Constructor Description SSLParametersImpl(KeyManager[] kms, TrustManager[] tms, SecureRandom sr, ClientSessionContext clientSessionContext, ServerSessionContext serverSessionContext)Initializes the parameters.