object TLSProtocol
- Alphabetic
- By Inheritance
- TLSProtocol
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
case class
NegotiateNewSession(enabledCipherSuites: Option[Seq[String]], enabledProtocols: Option[Seq[String]], clientAuth: Option[TLSClientAuth], sslParameters: Option[SSLParameters]) extends SslTlsOutbound with Product with Serializable
Initiate a new session negotiation.
Initiate a new session negotiation. Any SendBytes commands following this one will be held back (i.e. back-pressured) until the new handshake is completed, meaning that the bytes following this message will be encrypted according to the requirements outlined here.
Each of the values in this message is optional and will have the following effect if provided:
-
enabledCipherSuites
will be passed toSSLEngine::setEnabledCipherSuites()
-enabledProtocols
will be passed toSSLEngine::setEnabledProtocols()
-clientAuth
will be passed toSSLEngine::setWantClientAuth()
orSSLEngine.setNeedClientAuth()
, respectively -sslParameters
will be passed toSSLEngine::setSSLParameters()
Please note that passing
clientAuth = None
means that no change is done on client authentication requirements whileclientAuth = Some(ClientAuth.None)
switches off client authentication. -
final
case class
SendBytes(bytes: ByteString) extends SslTlsOutbound with Product with Serializable
Send the given akka.util.ByteString across the encrypted session to the peer.
-
final
case class
SessionBytes(session: SSLSession, bytes: ByteString) extends SslTlsInbound with ScalaSessionAPI with Product with Serializable
Plaintext bytes emitted by the SSLEngine are received over one specific encryption session and this class bundles the bytes with the SSLSession object.
Plaintext bytes emitted by the SSLEngine are received over one specific encryption session and this class bundles the bytes with the SSLSession object. When the session changes due to renegotiation (which can be initiated by either party) the new session value will not compare equal to the previous one.
The Java API for getting session information is given by the SSLSession object, the Scala API adapters are offered below.
-
sealed abstract
class
SessionTruncated extends SslTlsInbound
If the underlying transport is closed before the final TLS closure command is received from the peer then the SSLEngine will throw an SSLException that warns about possible truncation attacks.
If the underlying transport is closed before the final TLS closure command is received from the peer then the SSLEngine will throw an SSLException that warns about possible truncation attacks. This exception is caught and translated into this message when encountered. Most of the time this occurs not because of a malicious attacker but due to a connection abort or a misbehaving communication peer.
-
sealed
trait
SslTlsInbound extends AnyRef
This is the supertype of all messages that the SslTls operator emits on the plaintext side.
-
sealed
trait
SslTlsOutbound extends AnyRef
This is the supertype of all messages that the SslTls operator accepts on its plaintext side.
Value Members
-
def
negotiateNewSession: NegotiateNewSession
Java API: obtain the default value of NegotiateNewSession (which will leave the SSLEngine’s settings unchanged).
- object NegotiateNewSession extends NegotiateNewSession
- object SessionTruncated extends SessionTruncated with Product with Serializable