123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using System.IO;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Tls.Crypto;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls
- {
- /// <summary>Base interface for a (D)TLS endpoint.</summary>
- public interface TlsPeer
- {
- TlsCrypto Crypto { get; }
- void NotifyCloseHandle(TlsCloseable closehandle);
- /// <exception cref="IOException"/>
- void Cancel();
- ProtocolVersion[] GetProtocolVersions();
- int[] GetCipherSuites();
- /// <summary>Notifies the peer that a new handshake is about to begin.</summary>
- /// <exception cref="IOException"/>
- void NotifyHandshakeBeginning();
- /// <summary>Specify the timeout, in milliseconds, to use for the complete handshake process.</summary>
- /// <remarks>
- /// NOTE: Currently only respected by DTLS protocols. Negative values are not allowed. A timeout of zero means
- /// an infinite timeout (i.e.the handshake will never time out).
- /// </remarks>
- /// <returns>the handshake timeout, in milliseconds.</returns>
- int GetHandshakeTimeoutMillis();
- bool AllowLegacyResumption();
- int GetMaxCertificateChainLength();
- int GetMaxHandshakeMessageSize();
- short[] GetPskKeyExchangeModes();
- /// <remarks>
- /// This option is provided as a last resort for interoperability with TLS peers that fail to correctly send a
- /// close_notify alert at end of stream. Implementations SHOULD return true; caution is advised if returning
- /// false without a full understanding of the implications.
- /// </remarks>
- bool RequiresCloseNotify();
- /// <remarks>This implementation supports RFC 7627 and will always negotiate the extended_master_secret
- /// extension where possible. When connecting to a peer that does not offer/accept this extension, it is
- /// recommended to abort the handshake.This option is provided for interoperability with legacy peers, although
- /// some TLS features will be disabled in that case (see RFC 7627 5.4).
- /// </remarks>
- /// <returns><c>true</c> if the handshake should be aborted when the peer does not negotiate the
- /// extended_master_secret extension, or <c>false</c> to support legacy interoperability.</returns>
- bool RequiresExtendedMasterSecret();
- bool ShouldUseExtendedMasterSecret();
- /// <summary>See RFC 5246 6.2.3.2. Controls whether block cipher encryption may randomly add extra padding
- /// beyond the minimum.</summary>
- /// <remarks>
- /// Note that in configurations where this is known to be potential security risk this setting will be ignored
- /// (and extended padding disabled). Extra padding is always supported when decrypting received records.
- /// </remarks>
- /// <returns><c>true</c> if random extra padding should be added during block cipher encryption, or
- /// <c>false</c> to always use the minimum amount of required padding.</returns>
- bool ShouldUseExtendedPadding();
- /// <summary> draft-mathewson-no-gmtunixtime-00 2. "If existing users of a TLS implementation may rely on
- /// gmt_unix_time containing the current time, we recommend that implementors MAY provide the ability to set
- /// gmt_unix_time as an option only, off by default.".</summary>
- /// <remarks>
- /// NOTE: For a server that has negotiated TLS 1.3 (or later), or a client that has offered TLS 1.3 (or later),
- /// this is not called and gmt_unix_time is not used.
- /// </remarks>
- /// <returns><c>true</c> if the current time should be used in the gmt_unix_time field of Random, or
- /// <c>false</c> if gmt_unix_time should contain a cryptographically random value.</returns>
- bool ShouldUseGmtUnixTime();
- /// <summary>RFC 5746 3.4/3.6. In case this is false, peers may want to terminate the handshake instead of
- /// continuing; see Section 4.1/4.3 for discussion.</summary>
- /// <remarks>
- /// NOTE: TLS 1.3 forbids renegotiation, so this is never called when TLS 1.3 (or later) was negotiated.
- /// </remarks>
- /// <exception cref="IOException"/>
- void NotifySecureRenegotiation(bool secureRenegotiation);
- /// <exception cref="IOException"/>
- TlsKeyExchangeFactory GetKeyExchangeFactory();
- /// <summary>This method will be called when an alert is raised by the protocol.</summary>
- /// <param name="alertLevel"><see cref="AlertLevel"/></param>
- /// <param name="alertDescription"><see cref="AlertDescription"/></param>
- /// <param name="message">A human-readable message explaining what caused this alert. May be null.</param>
- /// <param name="cause">The <see cref="Exception"/> that caused this alert to be raised. May be null.</param>
- void NotifyAlertRaised(short alertLevel, short alertDescription, string message, Exception cause);
- /// <summary>This method will be called when an alert is received from the remote peer.</summary>
- /// <param name="alertLevel"><see cref="AlertLevel"/></param>
- /// <param name="alertDescription"><see cref="AlertDescription"/></param>
- void NotifyAlertReceived(short alertLevel, short alertDescription);
- /// <summary>Notifies the peer that the handshake has been successfully completed.</summary>
- /// <exception cref="IOException"/>
- void NotifyHandshakeComplete();
- /// <summary>Return a <see cref="TlsHeartbeat"/> instance that will control the generation of heartbeats
- /// locally (if permitted by the remote peer), or null to not generate heartbeats. Heartbeats are described in
- /// RFC 6520.</summary>
- /// <returns>an instance of <see cref="TlsHeartbeat"/>.</returns>
- /// <seealso cref="DefaultTlsHeartbeat"/>
- TlsHeartbeat GetHeartbeat();
- /// <summary>Return the heartbeat mode applicable to the remote peer. Heartbeats are described in RFC 6520.
- /// </summary>
- /// <remarks>
- /// See enumeration class <see cref="HeartbeatMode"/> for appropriate return values.
- /// </remarks>
- /// <returns>the <see cref="HeartbeatMode"/> value.</returns>
- short GetHeartbeatPolicy();
- }
- }
- #pragma warning restore
- #endif
|