Package org.wildfly.security.ssl
Class SelectingServerSSLEngine.InitialState
- java.lang.Object
-
- javax.net.ssl.SSLEngine
-
- org.wildfly.security.ssl.SelectingServerSSLEngine.InitialState
-
- Enclosing class:
- SelectingServerSSLEngine
class SelectingServerSSLEngine.InitialState extends SSLEngine
-
-
Field Summary
Fields Modifier and Type Field Description private Function<SSLContext,SSLEngine>engineFunctionprivate AtomicIntegerflagsprivate SSLSessionhandshakeSessionprivate intpacketBufferSizeprivate SSLContextSelectorselector
-
Constructor Summary
Constructors Constructor Description InitialState(SSLContextSelector selector, Function<SSLContext,SSLEngine> engineFunction)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbeginHandshake()voidcloseInbound()voidcloseOutbound()RunnablegetDelegatedTask()String[]getEnabledCipherSuites()String[]getEnabledProtocols()booleangetEnableSessionCreation()SSLSessiongetHandshakeSession()SSLEngineResult.HandshakeStatusgetHandshakeStatus()booleangetNeedClientAuth()SSLSessiongetSession()String[]getSupportedCipherSuites()String[]getSupportedProtocols()booleangetUseClientMode()booleangetWantClientAuth()booleanisInboundDone()booleanisOutboundDone()voidsetEnabledCipherSuites(String[] suites)voidsetEnabledProtocols(String[] protocols)voidsetEnableSessionCreation(boolean flag)voidsetNeedClientAuth(boolean need)voidsetUseClientMode(boolean mode)voidsetWantClientAuth(boolean want)SSLEngineResultunwrap(ByteBuffer src, ByteBuffer[] dsts, int offset, int length)SSLEngineResultwrap(ByteBuffer[] srcs, int offset, int length, ByteBuffer dst)-
Methods inherited from class javax.net.ssl.SSLEngine
getApplicationProtocol, getHandshakeApplicationProtocol, getHandshakeApplicationProtocolSelector, getPeerHost, getPeerPort, getSSLParameters, setHandshakeApplicationProtocolSelector, setSSLParameters, unwrap, unwrap, wrap, wrap
-
-
-
-
Field Detail
-
selector
private final SSLContextSelector selector
-
flags
private final AtomicInteger flags
-
engineFunction
private final Function<SSLContext,SSLEngine> engineFunction
-
packetBufferSize
private int packetBufferSize
-
handshakeSession
private final SSLSession handshakeSession
-
-
Constructor Detail
-
InitialState
InitialState(SSLContextSelector selector, Function<SSLContext,SSLEngine> engineFunction)
-
-
Method Detail
-
getHandshakeSession
public SSLSession getHandshakeSession()
- Overrides:
getHandshakeSessionin classSSLEngine
-
wrap
public SSLEngineResult wrap(ByteBuffer[] srcs, int offset, int length, ByteBuffer dst) throws SSLException
- Specified by:
wrapin classSSLEngine- Throws:
SSLException
-
unwrap
public SSLEngineResult unwrap(ByteBuffer src, ByteBuffer[] dsts, int offset, int length) throws SSLException
- Specified by:
unwrapin classSSLEngine- Throws:
SSLException
-
getDelegatedTask
public Runnable getDelegatedTask()
- Specified by:
getDelegatedTaskin classSSLEngine
-
closeInbound
public void closeInbound() throws SSLException- Specified by:
closeInboundin classSSLEngine- Throws:
SSLException
-
isInboundDone
public boolean isInboundDone()
- Specified by:
isInboundDonein classSSLEngine
-
closeOutbound
public void closeOutbound()
- Specified by:
closeOutboundin classSSLEngine
-
isOutboundDone
public boolean isOutboundDone()
- Specified by:
isOutboundDonein classSSLEngine
-
getSupportedCipherSuites
public String[] getSupportedCipherSuites()
- Specified by:
getSupportedCipherSuitesin classSSLEngine
-
getEnabledCipherSuites
public String[] getEnabledCipherSuites()
- Specified by:
getEnabledCipherSuitesin classSSLEngine
-
setEnabledCipherSuites
public void setEnabledCipherSuites(String[] suites)
- Specified by:
setEnabledCipherSuitesin classSSLEngine
-
getSupportedProtocols
public String[] getSupportedProtocols()
- Specified by:
getSupportedProtocolsin classSSLEngine
-
getEnabledProtocols
public String[] getEnabledProtocols()
- Specified by:
getEnabledProtocolsin classSSLEngine
-
setEnabledProtocols
public void setEnabledProtocols(String[] protocols)
- Specified by:
setEnabledProtocolsin classSSLEngine
-
getSession
public SSLSession getSession()
- Specified by:
getSessionin classSSLEngine
-
beginHandshake
public void beginHandshake() throws SSLException- Specified by:
beginHandshakein classSSLEngine- Throws:
SSLException
-
getHandshakeStatus
public SSLEngineResult.HandshakeStatus getHandshakeStatus()
- Specified by:
getHandshakeStatusin classSSLEngine
-
setUseClientMode
public void setUseClientMode(boolean mode)
- Specified by:
setUseClientModein classSSLEngine
-
getUseClientMode
public boolean getUseClientMode()
- Specified by:
getUseClientModein classSSLEngine
-
setNeedClientAuth
public void setNeedClientAuth(boolean need)
- Specified by:
setNeedClientAuthin classSSLEngine
-
getNeedClientAuth
public boolean getNeedClientAuth()
- Specified by:
getNeedClientAuthin classSSLEngine
-
setWantClientAuth
public void setWantClientAuth(boolean want)
- Specified by:
setWantClientAuthin classSSLEngine
-
getWantClientAuth
public boolean getWantClientAuth()
- Specified by:
getWantClientAuthin classSSLEngine
-
setEnableSessionCreation
public void setEnableSessionCreation(boolean flag)
- Specified by:
setEnableSessionCreationin classSSLEngine
-
getEnableSessionCreation
public boolean getEnableSessionCreation()
- Specified by:
getEnableSessionCreationin classSSLEngine
-
-