Packages

t

akka.remote.artery.tcp

SSLEngineProvider

trait SSLEngineProvider extends AnyRef

Annotations
@ApiMayChange()
Source
SSLEngineProvider.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. SSLEngineProvider
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def createClientSSLEngine(hostname: String, port: Int): SSLEngine
  2. abstract def createServerSSLEngine(hostname: String, port: Int): SSLEngine
  3. abstract def verifyClientSession(hostname: String, session: SSLSession): Option[Throwable]

    Verification that will be called after every successful handshake to verify additional session information.

    Verification that will be called after every successful handshake to verify additional session information. Return None if valid otherwise Some with explaining cause.

  4. abstract def verifyServerSession(hostname: String, session: SSLSession): Option[Throwable]

    Verification that will be called after every successful handshake to verify additional session information.

    Verification that will be called after every successful handshake to verify additional session information. Return None if valid otherwise Some with explaining cause.