You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.1 KiB
76 lines
2.1 KiB
2 months ago
|
using System;
|
||
|
using System.IO;
|
||
|
|
||
|
namespace Org.BouncyCastle.Crypto.Tls
|
||
|
{
|
||
|
public abstract class AbstractTlsPeer
|
||
|
: TlsPeer
|
||
|
{
|
||
|
private volatile TlsCloseable mCloseHandle;
|
||
|
|
||
|
/// <exception cref="IOException"/>
|
||
|
public virtual void Cancel()
|
||
|
{
|
||
|
TlsCloseable closeHandle = this.mCloseHandle;
|
||
|
if (null != closeHandle)
|
||
|
{
|
||
|
closeHandle.Close();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public virtual void NotifyCloseHandle(TlsCloseable closeHandle)
|
||
|
{
|
||
|
this.mCloseHandle = closeHandle;
|
||
|
}
|
||
|
|
||
|
public virtual int GetHandshakeTimeoutMillis()
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
public virtual bool RequiresExtendedMasterSecret()
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public virtual bool ShouldUseGmtUnixTime()
|
||
|
{
|
||
|
/*
|
||
|
* draft-mathewson-no-gmtunixtime-00 2. For the reasons we discuss above, we recommend that
|
||
|
* TLS implementors MUST by default set the entire value the ClientHello.Random and
|
||
|
* ServerHello.Random fields, including gmt_unix_time, to a cryptographically random
|
||
|
* sequence.
|
||
|
*/
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public virtual void NotifySecureRenegotiation(bool secureRenegotiation)
|
||
|
{
|
||
|
if (!secureRenegotiation)
|
||
|
{
|
||
|
/*
|
||
|
* RFC 5746 3.4/3.6. In this case, some clients/servers may want to terminate the handshake instead
|
||
|
* of continuing; see Section 4.1/4.3 for discussion.
|
||
|
*/
|
||
|
throw new TlsFatalAlert(AlertDescription.handshake_failure);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public abstract TlsCompression GetCompression();
|
||
|
|
||
|
public abstract TlsCipher GetCipher();
|
||
|
|
||
|
public virtual void NotifyAlertRaised(byte alertLevel, byte alertDescription, string message, Exception cause)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public virtual void NotifyAlertReceived(byte alertLevel, byte alertDescription)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public virtual void NotifyHandshakeComplete()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|