Package

com.twitter.finagle.ssl

server

Permalink

package server

Visibility
  1. Public
  2. All

Type Members

  1. class ConstServerEngineFactory extends SslServerEngineFactory

    Permalink

    This engine factory is a bridge for TLSServerEngine param configurations which use a () => Engine interface.

    This engine factory is a bridge for TLSServerEngine param configurations which use a () => Engine interface. It should only be used for legacy purposes.

  2. class SslContextServerEngineFactory extends SslServerEngineFactory

    Permalink
  3. 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.

  4. abstract class SslServerEngineFactory extends AnyRef

    Permalink

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

  5. 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

Deprecated Value Members

  1. object LegacyKeyServerEngineFactory extends SslServerEngineFactory

    Permalink

    This engine factory is intended to act as a temporary bridge for those currently using non-PKCS#8 PEM-encoded keys, such as PKCS#1 keys.

    This engine factory is intended to act as a temporary bridge for those currently using non-PKCS#8 PEM-encoded keys, such as PKCS#1 keys. Once the private key file has been converted into PKCS#8 PEM-encoded format, JdkServerEngineFactory or Netty4ServerEngineFactory should be used instead.

    Annotations
    @deprecated
    Deprecated

    (Since version 2017-02-10) Use Netty4ServerEngineFactory instead

    Note

    This engine factory uses PEMEncodedKeyManager which shells out to OpenSSL in order to convert the key into a usable format.

  2. object LegacyServerEngineFactory extends SslServerEngineFactory

    Permalink

    This engine factory is intended to act as a temporary bridge for those currently using JSSE or OpenSSL (Finagle-Native) through the Ssl class.

    This engine factory is intended to act as a temporary bridge for those currently using JSSE or OpenSSL (Finagle-Native) through the Ssl class. From there, if using JSSE, then JdkServerEngineFactory or Netty4ServerEngineFactory should be the next step. If using OpenSSL, then Netty4ServerEngineFactory should be the next step, as it will be the supported path forward for using native engines with Finagle.

    Annotations
    @deprecated
    Deprecated

    (Since version 2017-02-07) Use Netty4ServerEngineFactory instead

Ungrouped