org.bouncycastle.crypto.tls
Class AbstractTlsPeer
java.lang.Object
org.bouncycastle.crypto.tls.AbstractTlsPeer
- All Implemented Interfaces:
- TlsPeer
- Direct Known Subclasses:
- AbstractTlsClient, AbstractTlsServer
public abstract class AbstractTlsPeer
- extends java.lang.Object
- implements TlsPeer
Method Summary |
void |
notifyAlertRaised(short alertLevel,
short alertDescription,
java.lang.String message,
java.lang.Exception cause)
This method will be called when an alert is raised by the protocol. |
void |
notifyAlertReceived(short alertLevel,
short alertDescription)
This method will be called when an alert is received from the remote peer. |
void |
notifyHandshakeComplete()
Notifies the peer that the handshake has been successfully completed. |
void |
notifySecureRenegotiation(boolean secureRenegotiation)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AbstractTlsPeer
public AbstractTlsPeer()
notifySecureRenegotiation
public void notifySecureRenegotiation(boolean secureRenegotiation)
throws java.io.IOException
- Specified by:
notifySecureRenegotiation
in interface TlsPeer
- Throws:
java.io.IOException
notifyAlertRaised
public void notifyAlertRaised(short alertLevel,
short alertDescription,
java.lang.String message,
java.lang.Exception cause)
- Description copied from interface:
TlsPeer
- This method will be called when an alert is raised by the protocol.
- Specified by:
notifyAlertRaised
in interface TlsPeer
- Parameters:
alertLevel
- AlertLevel
alertDescription
- AlertDescription
message
- A human-readable message explaining what caused this alert. May be null.cause
- The exception that caused this alert to be raised. May be null.
notifyAlertReceived
public void notifyAlertReceived(short alertLevel,
short alertDescription)
- Description copied from interface:
TlsPeer
- This method will be called when an alert is received from the remote peer.
- Specified by:
notifyAlertReceived
in interface TlsPeer
- Parameters:
alertLevel
- AlertLevel
alertDescription
- AlertDescription
notifyHandshakeComplete
public void notifyHandshakeComplete()
throws java.io.IOException
- Description copied from interface:
TlsPeer
- Notifies the peer that the handshake has been successfully completed.
- Specified by:
notifyHandshakeComplete
in interface TlsPeer
- Throws:
java.io.IOException