Interface SSLEngineProvider
- All Known Implementing Classes:
ConfigSSLEngineProvider
,RotatingKeysSSLEngineProvider
public interface SSLEngineProvider
-
Method Summary
Modifier and TypeMethodDescriptioncreateClientSSLEngine
(String hostname, int port) createServerSSLEngine
(String hostname, int port) scala.Option<Throwable>
verifyClientSession
(String hostname, SSLSession session) Verification that will be called after every successful handshake to verify additional session information.scala.Option<Throwable>
verifyServerSession
(String hostname, SSLSession session) Verification that will be called after every successful handshake to verify additional session information.
-
Method Details
-
createClientSSLEngine
-
createServerSSLEngine
-
verifyClientSession
Verification that will be called after every successful handshake to verify additional session information. ReturnNone
if valid otherwiseSome
with explaining cause. -
verifyServerSession
Verification that will be called after every successful handshake to verify additional session information. ReturnNone
if valid otherwiseSome
with explaining cause.
-