SslStoreBundle

interface SslStoreBundle

A bundle of key and trust stores that can be used to establish an SSL connection.

Author

Scott Frederick

Since

3.1.0

See also

Inheritors

Properties

Link copied to clipboard
SslStoreBundle that returns null for each method.

Functions

Link copied to clipboard
abstract fun getKeyStore(): KeyStore
Return a key store generated from the trust material or null.
Link copied to clipboard
abstract fun getKeyStorePassword(): String
Return the password for the key in the key store or null.
Link copied to clipboard
abstract fun getTrustStore(): KeyStore
Return a trust store generated from the trust material or null.
Link copied to clipboard
open fun of(keyStore: KeyStore, keyStorePassword: String, trustStore: KeyStore): SslStoreBundle
Factory method to create a new SslStoreBundle instance.