Files
JJBB/Assets/Plugins/Best HTTP/Source/SecureProtocol/crypto/tls/LegacyTlsClient.cs
2024-08-23 15:49:34 +08:00

36 lines
1.2 KiB
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
using System;
using BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls
{
/// <summary>
/// A temporary class to use LegacyTlsAuthentication
/// </summary>
public sealed class LegacyTlsClient : DefaultTlsClient
{
private readonly Uri TargetUri;
private readonly ICertificateVerifyer verifyer;
private readonly IClientCredentialsProvider credProvider;
public LegacyTlsClient(Uri targetUri, ICertificateVerifyer verifyer, IClientCredentialsProvider prov,
System.Collections.Generic.List<string> hostNames,
System.Collections.Generic.List<string> clientSupportedProtocols)
{
this.TargetUri = targetUri;
this.verifyer = verifyer;
this.credProvider = prov;
base.HostNames = hostNames;
base.ClientSupportedProtocols = clientSupportedProtocols;
}
public override TlsAuthentication GetAuthentication()
{
return new LegacyTlsAuthentication(this.TargetUri, verifyer, credProvider);
}
}
}
#endif