Interface SSLEngineProvider
- All Known Implementing Classes:
- ConfigSSLEngineProvider,- RotatingKeysSSLEngineProvider
public interface SSLEngineProvider
- 
Method SummaryModifier 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
- 
verifyClientSessionVerification that will be called after every successful handshake to verify additional session information. ReturnNoneif valid otherwiseSomewith explaining cause.
- 
verifyServerSessionVerification that will be called after every successful handshake to verify additional session information. ReturnNoneif valid otherwiseSomewith explaining cause.
 
-