|
|
@ -15,26 +15,27 @@ |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
package io.netty.handler.ssl; |
|
|
|
package io.netty.handler.ssl; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import static io.netty.handler.ssl.SslUtils.toSSLHandshakeException; |
|
|
|
|
|
|
|
import static io.netty.util.internal.ObjectUtil.checkNotNull; |
|
|
|
|
|
|
|
import static java.lang.Math.min; |
|
|
|
|
|
|
|
|
|
|
|
import io.netty.buffer.ByteBuf; |
|
|
|
import io.netty.buffer.ByteBuf; |
|
|
|
import io.netty.buffer.ByteBufAllocator; |
|
|
|
import io.netty.buffer.ByteBufAllocator; |
|
|
|
import io.netty.handler.ssl.JdkApplicationProtocolNegotiator.ProtocolSelectionListener; |
|
|
|
import io.netty.handler.ssl.JdkApplicationProtocolNegotiator.ProtocolSelectionListener; |
|
|
|
import io.netty.handler.ssl.JdkApplicationProtocolNegotiator.ProtocolSelector; |
|
|
|
import io.netty.handler.ssl.JdkApplicationProtocolNegotiator.ProtocolSelector; |
|
|
|
import io.netty.util.internal.SystemPropertyUtil; |
|
|
|
|
|
|
|
import org.conscrypt.AllocatedBuffer; |
|
|
|
|
|
|
|
import org.conscrypt.BufferAllocator; |
|
|
|
|
|
|
|
import org.conscrypt.HandshakeListener; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import javax.net.ssl.SSLEngine; |
|
|
|
|
|
|
|
import javax.net.ssl.SSLEngineResult; |
|
|
|
|
|
|
|
import javax.net.ssl.SSLException; |
|
|
|
|
|
|
|
import java.nio.ByteBuffer; |
|
|
|
import java.nio.ByteBuffer; |
|
|
|
import java.util.Collections; |
|
|
|
import java.util.Collections; |
|
|
|
import java.util.LinkedHashSet; |
|
|
|
import java.util.LinkedHashSet; |
|
|
|
import java.util.List; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
import javax.net.ssl.SSLEngine; |
|
|
|
|
|
|
|
import javax.net.ssl.SSLEngineResult; |
|
|
|
|
|
|
|
import javax.net.ssl.SSLException; |
|
|
|
|
|
|
|
|
|
|
|
import static io.netty.handler.ssl.SslUtils.toSSLHandshakeException; |
|
|
|
import io.netty.util.internal.SystemPropertyUtil; |
|
|
|
import static io.netty.util.internal.ObjectUtil.checkNotNull; |
|
|
|
import org.conscrypt.AllocatedBuffer; |
|
|
|
import static java.lang.Math.min; |
|
|
|
import org.conscrypt.BufferAllocator; |
|
|
|
|
|
|
|
import org.conscrypt.Conscrypt; |
|
|
|
|
|
|
|
import org.conscrypt.HandshakeListener; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* A {@link JdkSslEngine} that uses the Conscrypt provider or SSL with ALPN. |
|
|
|
* A {@link JdkSslEngine} that uses the Conscrypt provider or SSL with ALPN. |
|
|
|