public abstract class AbstractTlsClient extends AbstractTlsPeer implements TlsClient
| Modifier and Type | Field and Description |
|---|---|
protected TlsCipherFactory |
cipherFactory |
protected short[] |
clientECPointFormats |
protected TlsClientContext |
context |
protected int[] |
namedCurves |
protected int |
selectedCipherSuite |
protected short |
selectedCompressionMethod |
protected short[] |
serverECPointFormats |
protected Vector |
supportedSignatureAlgorithms |
| Constructor and Description |
|---|
AbstractTlsClient() |
AbstractTlsClient(TlsCipherFactory cipherFactory) |
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
allowUnexpectedServerExtension(Integer extensionType,
byte[] extensionData) |
protected void |
checkForUnexpectedServerExtension(Hashtable serverExtensions,
Integer extensionType) |
TlsCipher |
getCipher() |
Hashtable |
getClientExtensions() |
ProtocolVersion |
getClientHelloRecordLayerVersion()
Return the
ProtocolVersion to use for the TLSPlaintext.version field prior to
receiving the server version. |
Vector |
getClientSupplementalData() |
ProtocolVersion |
getClientVersion() |
TlsCompression |
getCompression() |
short[] |
getCompressionMethods() |
ProtocolVersion |
getMinimumVersion() |
TlsSession |
getSessionToResume()
Return the session this client wants to resume, if any.
|
void |
init(TlsClientContext context) |
boolean |
isFallback() |
void |
notifyNewSessionTicket(NewSessionTicket newSessionTicket)
RFC 5077 3.3.
|
void |
notifySelectedCipherSuite(int selectedCipherSuite) |
void |
notifySelectedCompressionMethod(short selectedCompressionMethod) |
void |
notifyServerVersion(ProtocolVersion serverVersion) |
void |
notifySessionID(byte[] sessionID)
Notifies the client of the session_id sent in the ServerHello.
|
void |
processServerExtensions(Hashtable serverExtensions) |
void |
processServerSupplementalData(Vector serverSupplementalData) |
notifyAlertRaised, notifyAlertReceived, notifyHandshakeComplete, notifySecureRenegotiation, requiresExtendedMasterSecret, shouldUseGMTUnixTimeclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetAuthentication, getCipherSuites, getKeyExchangenotifyAlertRaised, notifyAlertReceived, notifyHandshakeComplete, notifySecureRenegotiation, requiresExtendedMasterSecret, shouldUseGMTUnixTimeprotected TlsCipherFactory cipherFactory
protected TlsClientContext context
protected Vector supportedSignatureAlgorithms
protected int[] namedCurves
protected short[] clientECPointFormats
protected short[] serverECPointFormats
protected int selectedCipherSuite
protected short selectedCompressionMethod
public AbstractTlsClient()
public AbstractTlsClient(TlsCipherFactory cipherFactory)
protected boolean allowUnexpectedServerExtension(Integer extensionType, byte[] extensionData) throws IOException
IOExceptionprotected void checkForUnexpectedServerExtension(Hashtable serverExtensions, Integer extensionType) throws IOException
IOExceptionpublic void init(TlsClientContext context)
public TlsSession getSessionToResume()
TlsClientgetSessionToResume in interface TlsClientTlsSession representing the resumable session to be used for this
connection, or null to use a new session.SessionParameters.getPeerCertificate()public ProtocolVersion getClientHelloRecordLayerVersion()
TlsClientProtocolVersion to use for the TLSPlaintext.version field prior to
receiving the server version. NOTE: This method is not called for DTLS.
See RFC 5246 E.1.: "TLS clients that wish to negotiate with older servers MAY send any value {03,XX} as the record layer version number. Typical values would be {03,00}, the lowest version number supported by the client, and the value of ClientHello.client_version. No single value will guarantee interoperability with all old servers, but this is a complex topic beyond the scope of this document."
getClientHelloRecordLayerVersion in interface TlsClientProtocolVersion to use.public ProtocolVersion getClientVersion()
getClientVersion in interface TlsClientpublic boolean isFallback()
isFallback in interface TlsClientpublic Hashtable getClientExtensions() throws IOException
getClientExtensions in interface TlsClientIOExceptionpublic ProtocolVersion getMinimumVersion()
public void notifyServerVersion(ProtocolVersion serverVersion) throws IOException
notifyServerVersion in interface TlsClientIOExceptionpublic short[] getCompressionMethods()
getCompressionMethods in interface TlsClientpublic void notifySessionID(byte[] sessionID)
TlsClientnotifySessionID in interface TlsClientTlsContext.getResumableSession()public void notifySelectedCipherSuite(int selectedCipherSuite)
notifySelectedCipherSuite in interface TlsClientpublic void notifySelectedCompressionMethod(short selectedCompressionMethod)
notifySelectedCompressionMethod in interface TlsClientpublic void processServerExtensions(Hashtable serverExtensions) throws IOException
processServerExtensions in interface TlsClientIOExceptionpublic void processServerSupplementalData(Vector serverSupplementalData) throws IOException
processServerSupplementalData in interface TlsClientIOExceptionpublic Vector getClientSupplementalData() throws IOException
getClientSupplementalData in interface TlsClientIOExceptionpublic TlsCompression getCompression() throws IOException
getCompression in interface TlsPeerIOExceptionpublic TlsCipher getCipher() throws IOException
getCipher in interface TlsPeerIOExceptionpublic void notifyNewSessionTicket(NewSessionTicket newSessionTicket) throws IOException
TlsClientThis method will be called (only) when a NewSessionTicket handshake message is received. The ticket is opaque to the client and clients MUST NOT examine the ticket under the assumption that it complies with e.g. RFC 5077 4. Recommended Ticket Construction.
notifyNewSessionTicket in interface TlsClientnewSessionTicket - The ticket.IOExceptionCopyright © 2015–2019 The veraPDF Consortium. All rights reserved.