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.
80 lines
2.8 KiB
80 lines
2.8 KiB
1 year ago
|
#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
|
||
|
{
|
||
|
/// <summary>Useful utility methods.</summary>
|
||
|
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;
|
||
|
byte[] seed = Arrays.Concatenate(securityParameters.ServerRandom, securityParameters.ClientRandom);
|
||
|
return Prf(securityParameters, master_secret, ExporterLabel.key_expansion, seed, length).Extract();
|
||
|
}
|
||
|
|
||
|
public static TlsSecret Prf(SecurityParameters securityParameters, TlsSecret secret, string asciiLabel,
|
||
|
byte[] seed, int length)
|
||
|
{
|
||
|
return secret.DeriveUsingPrf(securityParameters.PrfAlgorithm, asciiLabel, seed, length);
|
||
|
}
|
||
|
|
||
|
public static TlsSecret Prf(TlsCryptoParameters cryptoParams, TlsSecret secret, string asciiLabel, byte[] seed,
|
||
|
int length)
|
||
|
{
|
||
|
return Prf(cryptoParams.SecurityParameters, secret, asciiLabel, seed, length);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
#pragma warning restore
|
||
|
#endif
|