package server
- Alphabetic
- Public
- Protected
Type Members
- final class SslContextServerEngineFactory extends SslServerEngineFactory
- 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, forceJdk: Boolean = false) extends Product with Serializable
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.
- forceJdk
when true, forces use of the JDK SslProvider. Note that until JDK 9, this does not work with H2. For this reason, it's false by default.
- abstract class SslServerEngineFactory extends AnyRef
Instances of this class provide a method to create server Finagle Engines for use with TLS.
- abstract class SslServerSessionVerifier extends AnyRef
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 anSSLSession
has been established.
Value Members
- object JdkServerEngineFactory extends SslServerEngineFactory
This engine factory is a default JVM-based implementation, intended to provide coverage for a wide array of configurations.
- object SslServerEngineFactory
- object SslServerSessionVerifier