Builder

trait Builder[F[_]]
Companion
object
class Object
trait Matchable
class Any

Value members

Abstract methods

def fromKeyStore(keyStore: KeyStore, keyPassword: Array[Char]): F[TLSContext[F]]

Creates a TLSContext from the specified key store.

Creates a TLSContext from the specified key store.

def fromKeyStoreFile(file: Path, storePassword: Array[Char], keyPassword: Array[Char]): F[TLSContext[F]]

Creates a TLSContext from the specified key store file.

Creates a TLSContext from the specified key store file.

def fromKeyStoreResource(resource: String, storePassword: Array[Char], keyPassword: Array[Char]): F[TLSContext[F]]

Creates a TLSContext from the specified class path resource.

Creates a TLSContext from the specified class path resource.

def fromSSLContext(ctx: SSLContext): TLSContext[F]
def insecure: F[TLSContext[F]]

Creates a TLSContext which trusts all certificates.

Creates a TLSContext which trusts all certificates.

def system: F[TLSContext[F]]

Creates a TLSContext from the system default SSLContext.

Creates a TLSContext from the system default SSLContext.