SslManagerBundle
interface SslManagerBundle
A bundle of key and trust managers that can be used to establish an SSL connection. Instances are usually created from an SslStoreBundle.
Author
Scott Frederick
Moritz Halbritter
Since
3.1.0
See also
Functions
Link copied to clipboard
Factory method to create a new SSLContext for the key managers and trust managers managed by this instance.
Link copied to clipboard
Factory method to create a new SslManagerBundle using the given TrustManagers and the default KeyManagerFactory.
Factory method to create a new SslManagerBundle using the given TrustManagerFactory and the default KeyManagerFactory.
Link copied to clipboard
Return the
KeyManagerFactory
used to establish identity.Link copied to clipboard
Return the
KeyManager
instances used to establish identity.Link copied to clipboard
Return the TrustManagerFactory used to establish trust.
Link copied to clipboard
Return the TrustManager instances used to establish trust.
Link copied to clipboard
open fun of(keyManagerFactory: KeyManagerFactory, trustManagerFactory: TrustManagerFactory): SslManagerBundle
Factory method to create a new SslManagerBundle instance.