#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) #pragma warning disable using System; using BestHTTP.SecureProtocol.Org.BouncyCastle.Utilities; namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls.Crypto.Impl { /// Useful utility methods. public abstract class TlsImplUtilities { public static bool IsSsl(TlsCryptoParameters cryptoParams) { return cryptoParams.ServerVersion.IsSsl; } public static bool IsTlsV10(ProtocolVersion version) { return ProtocolVersion.TLSv10.IsEqualOrEarlierVersionOf(version.GetEquivalentTlsVersion()); } public static bool IsTlsV10(TlsCryptoParameters cryptoParams) { return IsTlsV10(cryptoParams.ServerVersion); } public static bool IsTlsV11(ProtocolVersion version) { return ProtocolVersion.TLSv11.IsEqualOrEarlierVersionOf(version.GetEquivalentTlsVersion()); } public static bool IsTlsV11(TlsCryptoParameters cryptoParams) { return IsTlsV11(cryptoParams.ServerVersion); } public static bool IsTlsV12(ProtocolVersion version) { return ProtocolVersion.TLSv12.IsEqualOrEarlierVersionOf(version.GetEquivalentTlsVersion()); } public static bool IsTlsV12(TlsCryptoParameters cryptoParams) { return IsTlsV12(cryptoParams.ServerVersion); } public static bool IsTlsV13(ProtocolVersion version) { return ProtocolVersion.TLSv13.IsEqualOrEarlierVersionOf(version.GetEquivalentTlsVersion()); } public static bool IsTlsV13(TlsCryptoParameters cryptoParams) { return IsTlsV13(cryptoParams.ServerVersion); } public static byte[] CalculateKeyBlock(TlsCryptoParameters cryptoParams, int length) { SecurityParameters securityParameters = cryptoParams.SecurityParameters; TlsSecret master_secret = securityParameters.MasterSecret; int prfAlgorithm = securityParameters.PrfAlgorithm; byte[] seed = Arrays.Concatenate(securityParameters.ServerRandom, securityParameters.ClientRandom); return master_secret.DeriveUsingPrf(prfAlgorithm, ExporterLabel.key_expansion, seed, length).Extract(); } #if NETCOREAPP2_1_OR_GREATER || NETSTANDARD2_1_OR_GREATER || _UNITY_2021_2_OR_NEWER_ public static void CalculateKeyBlock(TlsCryptoParameters cryptoParams, Span keyBlock) { SecurityParameters securityParameters = cryptoParams.SecurityParameters; TlsSecret master_secret = securityParameters.MasterSecret; int prfAlgorithm = securityParameters.PrfAlgorithm; Span cr = securityParameters.ClientRandom, sr = securityParameters.ServerRandom; Span seed = stackalloc byte[sr.Length + cr.Length]; sr.CopyTo(seed); cr.CopyTo(seed[sr.Length..]); TlsSecret derived = master_secret.DeriveUsingPrf(prfAlgorithm, ExporterLabel.key_expansion, seed, keyBlock.Length); derived.ExtractTo(keyBlock); } #endif } } #pragma warning restore #endif