-
public interface TlsStatusEventHandlerNotifies state changes in the TLS layer.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidearlySecretsKnown()voidextensionsReceived(java.util.List<Extension> extensions)voidhandshakeFinished()voidhandshakeSecretsKnown()booleanisEarlyDataAccepted()Determines whether early data is accepted by the server.voidnewSessionTicketReceived(NewSessionTicket ticket)
-
-
-
Method Detail
-
earlySecretsKnown
void earlySecretsKnown()
-
handshakeSecretsKnown
void handshakeSecretsKnown()
-
handshakeFinished
void handshakeFinished()
-
newSessionTicketReceived
void newSessionTicketReceived(NewSessionTicket ticket)
-
extensionsReceived
void extensionsReceived(java.util.List<Extension> extensions) throws TlsProtocolException
- Throws:
TlsProtocolException
-
isEarlyDataAccepted
boolean isEarlyDataAccepted()
Determines whether early data is accepted by the server. This method is called when the client has indicated it wants to use early data and the TLS layer of the server can accept it; this callback is used to let the server (that uses this library) decide whether it will accept early data.- Returns:
-
-