Uses of Interface
javax.net.ssl.KeyManager
| 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 KeyManager in javax.net.ssl
Subinterfaces of KeyManager in javax.net.ssl Modifier and Type Interface Description interfaceX509KeyManagerA Key Manager for X509 certificate-based key pairs.Classes in javax.net.ssl that implement KeyManager Modifier and Type Class Description classX509ExtendedKeyManagerThe abstract extension for theX509KeyManagerinterface.Methods in javax.net.ssl that return KeyManager Modifier and Type Method Description protected abstract KeyManager[]KeyManagerFactorySpi. engineGetKeyManagers()Returns a list of key managers, one instance for each type of key in the key store.KeyManager[]KeyManagerFactory. getKeyManagers()Returns a list of key managers, one instance for each type of key in the key store.Methods in javax.net.ssl with parameters of type KeyManager 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 KeyManager in org.conscrypt
Classes in org.conscrypt that implement KeyManager Modifier and Type Class Description classKeyManagerImplKeyManager implementation.Methods in org.conscrypt that return KeyManager Modifier and Type Method Description protected KeyManager[]KeyManagerFactoryImpl. engineGetKeyManagers()Methods in org.conscrypt with parameters of type KeyManager 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 KeyManager Constructor Description SSLParametersImpl(KeyManager[] kms, TrustManager[] tms, SecureRandom sr, ClientSessionContext clientSessionContext, ServerSessionContext serverSessionContext)Initializes the parameters.