Uses of Interface
org.conscrypt.ConscryptSession
-
Packages that use ConscryptSession Package Description org.conscrypt -
-
Uses of ConscryptSession in org.conscrypt
Classes in org.conscrypt that implement ConscryptSession Modifier and Type Class Description (package private) class
ActiveSession
A session that is dedicated a single connection and operates directly on the underlyingSSL
.(package private) class
ExternalSession
An externalized view of the underlyingSSLSession
used within a socket/engine.(package private) class
Java7ExtendedSSLSession
This is an adapter that wraps the active session withExtendedSSLSession
, if running on Java 7+.(package private) class
Java8ExtendedSSLSession
This is an adapter that wraps the active session withExtendedSSLSession
, if running on Java 8+.(package private) class
SessionSnapshot
A snapshot of the content of anotherConscryptSession
.(package private) class
SSLNullSession
This is returned in the place of aSSLSession
when no TLS connection could be negotiated, but one was requested from a method that can't throw an exception such asSSLSocket.getSession()
beforeSSLSocket.startHandshake()
is called.Methods in org.conscrypt that return ConscryptSession Modifier and Type Method Description (package private) static ConscryptSession
SSLNullSession. getNullSession()
private ConscryptSession
ConscryptEngine. provideAfterHandshakeSession()
private ConscryptSession
ConscryptFileDescriptorSocket. provideAfterHandshakeSession()
private ConscryptSession
ConscryptEngine. provideHandshakeSession()
private ConscryptSession
ConscryptFileDescriptorSocket. provideHandshakeSession()
private ConscryptSession
ConscryptEngine. provideSession()
private ConscryptSession
ConscryptFileDescriptorSocket. provideSession()
ConscryptSession
ExternalSession.Provider. provideSession()
Methods in org.conscrypt with parameters of type ConscryptSession Modifier and Type Method Description private static byte[]
NativeSslSession. getOcspResponse(ConscryptSession session)
(package private) static NativeSslSession
NativeSslSession. newInstance(NativeRef.SSL_SESSION ref, ConscryptSession session)
Creates a new instance.Constructors in org.conscrypt with parameters of type ConscryptSession Constructor Description SessionSnapshot(ConscryptSession session)
-