123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- #pragma warning disable
- using System;
- using System.Collections;
- using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities;
- namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls
- {
- public sealed class ProtocolVersion
- {
- public static readonly ProtocolVersion SSLv3 = new ProtocolVersion(0x0300, "SSL 3.0");
- public static readonly ProtocolVersion TLSv10 = new ProtocolVersion(0x0301, "TLS 1.0");
- public static readonly ProtocolVersion TLSv11 = new ProtocolVersion(0x0302, "TLS 1.1");
- public static readonly ProtocolVersion TLSv12 = new ProtocolVersion(0x0303, "TLS 1.2");
- public static readonly ProtocolVersion TLSv13 = new ProtocolVersion(0x0304, "TLS 1.3");
- public static readonly ProtocolVersion DTLSv10 = new ProtocolVersion(0xFEFF, "DTLS 1.0");
- public static readonly ProtocolVersion DTLSv12 = new ProtocolVersion(0xFEFD, "DTLS 1.2");
- internal static readonly ProtocolVersion CLIENT_EARLIEST_SUPPORTED_DTLS = DTLSv10;
- internal static readonly ProtocolVersion CLIENT_EARLIEST_SUPPORTED_TLS = SSLv3;
- internal static readonly ProtocolVersion CLIENT_LATEST_SUPPORTED_DTLS = DTLSv12;
- internal static readonly ProtocolVersion CLIENT_LATEST_SUPPORTED_TLS = TLSv13;
- internal static readonly ProtocolVersion SERVER_EARLIEST_SUPPORTED_DTLS = DTLSv10;
- internal static readonly ProtocolVersion SERVER_EARLIEST_SUPPORTED_TLS = SSLv3;
- internal static readonly ProtocolVersion SERVER_LATEST_SUPPORTED_DTLS = DTLSv12;
- internal static readonly ProtocolVersion SERVER_LATEST_SUPPORTED_TLS = TLSv13;
- public static bool Contains(ProtocolVersion[] versions, ProtocolVersion version)
- {
- if (versions != null && version != null)
- {
- for (int i = 0; i < versions.Length; ++i)
- {
- if (version.Equals(versions[i]))
- return true;
- }
- }
- return false;
- }
- public static ProtocolVersion GetEarliestDtls(ProtocolVersion[] versions)
- {
- ProtocolVersion earliest = null;
- if (null != versions)
- {
- for (int i = 0; i < versions.Length; ++i)
- {
- ProtocolVersion next = versions[i];
- if (null != next && next.IsDtls)
- {
- if (null == earliest || next.MinorVersion > earliest.MinorVersion)
- {
- earliest = next;
- }
- }
- }
- }
- return earliest;
- }
- public static ProtocolVersion GetEarliestTls(ProtocolVersion[] versions)
- {
- ProtocolVersion earliest = null;
- if (null != versions)
- {
- for (int i = 0; i < versions.Length; ++i)
- {
- ProtocolVersion next = versions[i];
- if (null != next && next.IsTls)
- {
- if (null == earliest || next.MinorVersion < earliest.MinorVersion)
- {
- earliest = next;
- }
- }
- }
- }
- return earliest;
- }
- public static ProtocolVersion GetLatestDtls(ProtocolVersion[] versions)
- {
- ProtocolVersion latest = null;
- if (null != versions)
- {
- for (int i = 0; i < versions.Length; ++i)
- {
- ProtocolVersion next = versions[i];
- if (null != next && next.IsDtls)
- {
- if (null == latest || next.MinorVersion < latest.MinorVersion)
- {
- latest = next;
- }
- }
- }
- }
- return latest;
- }
- public static ProtocolVersion GetLatestTls(ProtocolVersion[] versions)
- {
- ProtocolVersion latest = null;
- if (null != versions)
- {
- for (int i = 0; i < versions.Length; ++i)
- {
- ProtocolVersion next = versions[i];
- if (null != next && next.IsTls)
- {
- if (null == latest || next.MinorVersion > latest.MinorVersion)
- {
- latest = next;
- }
- }
- }
- }
- return latest;
- }
- internal static bool IsSupportedDtlsVersionClient(ProtocolVersion version)
- {
- return null != version
- && version.IsEqualOrLaterVersionOf(CLIENT_EARLIEST_SUPPORTED_DTLS)
- && version.IsEqualOrEarlierVersionOf(CLIENT_LATEST_SUPPORTED_DTLS);
- }
- internal static bool IsSupportedDtlsVersionServer(ProtocolVersion version)
- {
- return null != version
- && version.IsEqualOrLaterVersionOf(SERVER_EARLIEST_SUPPORTED_DTLS)
- && version.IsEqualOrEarlierVersionOf(SERVER_LATEST_SUPPORTED_DTLS);
- }
- internal static bool IsSupportedTlsVersionClient(ProtocolVersion version)
- {
- if (null == version)
- return false;
- int fullVersion = version.FullVersion;
- return fullVersion >= CLIENT_EARLIEST_SUPPORTED_TLS.FullVersion
- && fullVersion <= CLIENT_LATEST_SUPPORTED_TLS.FullVersion;
- }
- internal static bool IsSupportedTlsVersionServer(ProtocolVersion version)
- {
- if (null == version)
- return false;
- int fullVersion = version.FullVersion;
- return fullVersion >= SERVER_EARLIEST_SUPPORTED_TLS.FullVersion
- && fullVersion <= SERVER_LATEST_SUPPORTED_TLS.FullVersion;
- }
- private readonly int version;
- private readonly string name;
- private ProtocolVersion(int v, string name)
- {
- this.version = v & 0xFFFF;
- this.name = name;
- }
- public ProtocolVersion[] DownTo(ProtocolVersion min)
- {
- if (!IsEqualOrLaterVersionOf(min))
- throw new ArgumentException("must be an equal or earlier version of this one", "min");
- IList result = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.CreateArrayList();
- result.Add(this);
- ProtocolVersion current = this;
- while (!current.Equals(min))
- {
- current = current.GetPreviousVersion();
- result.Add(current);
- }
- ProtocolVersion[] versions = new ProtocolVersion[result.Count];
- for (int i = 0; i < result.Count; ++i)
- {
- versions[i] = (ProtocolVersion)result[i];
- }
- return versions;
- }
- public int FullVersion
- {
- get { return version; }
- }
- public int MajorVersion
- {
- get { return version >> 8; }
- }
- public int MinorVersion
- {
- get { return version & 0xFF; }
- }
- public string Name
- {
- get { return name; }
- }
- public bool IsDtls
- {
- get { return MajorVersion == 0xFE; }
- }
- public bool IsSsl
- {
- get { return this == SSLv3; }
- }
- public bool IsTls
- {
- get { return MajorVersion == 0x03; }
- }
- public ProtocolVersion GetEquivalentTlsVersion()
- {
- switch (MajorVersion)
- {
- case 0x03:
- return this;
- case 0xFE:
- switch (MinorVersion)
- {
- case 0xFF: return TLSv11;
- case 0xFD: return TLSv12;
- default: return null;
- }
- default:
- return null;
- }
- }
- public ProtocolVersion GetNextVersion()
- {
- int major = MajorVersion, minor = MinorVersion;
- switch (major)
- {
- case 0x03:
- switch (minor)
- {
- case 0xFF: return null;
- default: return Get(major, minor + 1);
- }
- case 0xFE:
- switch (minor)
- {
- case 0x00: return null;
- case 0xFF: return DTLSv12;
- default: return Get(major, minor - 1);
- }
- default:
- return null;
- }
- }
- public ProtocolVersion GetPreviousVersion()
- {
- int major = MajorVersion, minor = MinorVersion;
- switch (major)
- {
- case 0x03:
- switch (minor)
- {
- case 0x00: return null;
- default: return Get(major, minor - 1);
- }
- case 0xFE:
- switch (minor)
- {
- case 0xFF: return null;
- case 0xFD: return DTLSv10;
- default: return Get(major, minor + 1);
- }
- default:
- return null;
- }
- }
- public bool IsEarlierVersionOf(ProtocolVersion version)
- {
- if (null == version || MajorVersion != version.MajorVersion)
- return false;
- int diffMinorVersion = MinorVersion - version.MinorVersion;
- return IsDtls ? diffMinorVersion > 0 : diffMinorVersion < 0;
- }
- public bool IsEqualOrEarlierVersionOf(ProtocolVersion version)
- {
- if (null == version || MajorVersion != version.MajorVersion)
- return false;
- int diffMinorVersion = MinorVersion - version.MinorVersion;
- return IsDtls ? diffMinorVersion >= 0 : diffMinorVersion <= 0;
- }
- public bool IsEqualOrLaterVersionOf(ProtocolVersion version)
- {
- if (null == version || MajorVersion != version.MajorVersion)
- return false;
- int diffMinorVersion = MinorVersion - version.MinorVersion;
- return IsDtls ? diffMinorVersion <= 0 : diffMinorVersion >= 0;
- }
- public bool IsLaterVersionOf(ProtocolVersion version)
- {
- if (null == version || MajorVersion != version.MajorVersion)
- return false;
- int diffMinorVersion = MinorVersion - version.MinorVersion;
- return IsDtls ? diffMinorVersion < 0 : diffMinorVersion > 0;
- }
- public override bool Equals(object other)
- {
- return this == other || (other is ProtocolVersion && Equals((ProtocolVersion)other));
- }
- public bool Equals(ProtocolVersion other)
- {
- return other != null && this.version == other.version;
- }
- public override int GetHashCode()
- {
- return version;
- }
- public static ProtocolVersion Get(int major, int minor)
- {
- switch (major)
- {
- case 0x03:
- {
- switch (minor)
- {
- case 0x00:
- return SSLv3;
- case 0x01:
- return TLSv10;
- case 0x02:
- return TLSv11;
- case 0x03:
- return TLSv12;
- case 0x04:
- return TLSv13;
- }
- return GetUnknownVersion(major, minor, "TLS");
- }
- case 0xFE:
- {
- switch (minor)
- {
- case 0xFF:
- return DTLSv10;
- case 0xFE:
- throw new ArgumentException("{0xFE, 0xFE} is a reserved protocol version");
- case 0xFD:
- return DTLSv12;
- }
- return GetUnknownVersion(major, minor, "DTLS");
- }
- default:
- {
- return GetUnknownVersion(major, minor, "UNKNOWN");
- }
- }
- }
- public ProtocolVersion[] Only()
- {
- return new ProtocolVersion[]{ this };
- }
- public override string ToString()
- {
- return name;
- }
- private static void CheckUint8(int versionOctet)
- {
- if (!TlsUtilities.IsValidUint8(versionOctet))
- throw new ArgumentException("not a valid octet", "versionOctet");
- }
- private static ProtocolVersion GetUnknownVersion(int major, int minor, string prefix)
- {
- CheckUint8(major);
- CheckUint8(minor);
- int v = (major << 8) | minor;
- string hex = BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities.Platform.ToUpperInvariant(Convert.ToString(0x10000 | v, 16).Substring(1));
- return new ProtocolVersion(v, prefix + " 0x" + hex);
- }
- }
- }
- #pragma warning restore
- #endif
|