Package

com.twitter.finagle.ssl

server

Permalink

package server

Visibility
  1. Public
  2. All

Type Members

  1. final class SslContextServerEngineFactory extends SslServerEngineFactory

    Permalink
  2. case class SslServerConfiguration(keyCredentials: KeyCredentials = KeyCredentials.Unspecified, clientAuth: ClientAuth = ClientAuth.Unspecified, trustCredentials: TrustCredentials = TrustCredentials.Unspecified, cipherSuites: CipherSuites = CipherSuites.Unspecified, protocols: Protocols = Protocols.Unspecified, applicationProtocols: ApplicationProtocols = ApplicationProtocols.Unspecified) extends Product with Serializable

    Permalink

    SslServerConfiguration represents the collection of parameters that an engine factory should use to configure a TLS server Engine.

    SslServerConfiguration represents the collection of parameters that an engine factory should use to configure a TLS server Engine.

    keyCredentials

    The credentials used by the server engine to verify itself to a remote peer.

    clientAuth

    Determines whether mutual authentication is desired or required by this server engine.

    trustCredentials

    The credentials used by the server engine to validate a remote peer's credentials.

    cipherSuites

    The cipher suites which should be used by a particular server engine.

    protocols

    The protocols which should be enabled for use with a particular server engine.

    applicationProtocols

    The ALPN or NPN protocols which should be supported by a particular server engine.

  3. abstract class SslServerEngineFactory extends AnyRef

    Permalink

    Instances of this class provide a method to create server Finagle Engines for use with TLS.

  4. abstract class SslServerSessionVerifier extends AnyRef

    Permalink

    SslServerSessionVerifier represents an opportunity for a user or system to perform additional server-side verification checks against a configuration or session.

    SslServerSessionVerifier represents an opportunity for a user or system to perform additional server-side verification checks against a configuration or session. The apply method of the verifier is called when an SSLSession has been established.

Value Members

  1. object JdkServerEngineFactory extends SslServerEngineFactory

    Permalink

    This engine factory is a default JVM-based implementation, intended to provide coverage for a wide array of configurations.

  2. object SslServerEngineFactory

    Permalink
  3. object SslServerSessionVerifier

    Permalink

Ungrouped