Package io.undertow.server
Class ConnectionSSLSessionInfo
java.lang.Object
io.undertow.server.ConnectionSSLSessionInfo
- All Implemented Interfaces:
SSLSessionInfo
SSL session information that is read directly from the SSL session of the
XNIO connection
- Author:
- Stuart Douglas
-
Constructor Summary
ConstructorsConstructorDescriptionConnectionSSLSessionInfo(org.xnio.channels.SslChannel channel, HttpServerConnection serverConnection) -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Gets the peer certificates.byte[]voidrenegotiate(HttpServerExchange exchange, org.xnio.SslClientAuthMode sslClientAuthMode) Renegotiate in a blocking manner.voidrenegotiateBufferRequest(HttpServerExchange exchange, org.xnio.SslClientAuthMode newAuthMode) voidrenegotiateNoRequest(HttpServerExchange exchange, org.xnio.SslClientAuthMode newAuthMode) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.undertow.server.SSLSessionInfo
getKeySize
-
Constructor Details
-
ConnectionSSLSessionInfo
public ConnectionSSLSessionInfo(org.xnio.channels.SslChannel channel, HttpServerConnection serverConnection)
-
-
Method Details
-
getSessionId
public byte[] getSessionId()- Specified by:
getSessionIdin interfaceSSLSessionInfo- Returns:
- The SSL session ID, or null if this could not be determined.
-
getCipherSuite
- Specified by:
getCipherSuitein interfaceSSLSessionInfo
-
getPeerCertificates
public Certificate[] getPeerCertificates() throws SSLPeerUnverifiedException, RenegotiationRequiredExceptionDescription copied from interface:SSLSessionInfoGets the peer certificates. This may force SSL renegotiation.- Specified by:
getPeerCertificatesin interfaceSSLSessionInfo- Returns:
- The peer certificates
- Throws:
SSLPeerUnverifiedExceptionRenegotiationRequiredException- If the session
-
getPeerCertificateChain
@Deprecated(since="2.2.3", forRemoval=false) public X509Certificate[] getPeerCertificateChain() throws SSLPeerUnverifiedException, RenegotiationRequiredExceptionDeprecated.Description copied from interface:SSLSessionInfoThis method is no longer supported on java 15 and should be avoided.- Specified by:
getPeerCertificateChainin interfaceSSLSessionInfo- Throws:
SSLPeerUnverifiedExceptionRenegotiationRequiredException- See Also:
-
renegotiate
public void renegotiate(HttpServerExchange exchange, org.xnio.SslClientAuthMode sslClientAuthMode) throws IOException Description copied from interface:SSLSessionInfoRenegotiate in a blocking manner. This will set the client aut TODO: we also need a non-blocking version- Specified by:
renegotiatein interfaceSSLSessionInfo- Parameters:
exchange- The exchangesslClientAuthMode- The client cert mode to use when renegotiating- Throws:
IOException
-
getSSLSession
- Specified by:
getSSLSessionin interfaceSSLSessionInfo- Returns:
- The SSL session, or null if it is not applicable
-
renegotiateBufferRequest
public void renegotiateBufferRequest(HttpServerExchange exchange, org.xnio.SslClientAuthMode newAuthMode) throws IOException - Throws:
IOException
-
renegotiateNoRequest
public void renegotiateNoRequest(HttpServerExchange exchange, org.xnio.SslClientAuthMode newAuthMode) throws IOException - Throws:
IOException
-