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.
52 lines
1.8 KiB
52 lines
1.8 KiB
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR) |
|
#pragma warning disable |
|
using System; |
|
|
|
using BestHTTP.SecureProtocol.Org.BouncyCastle.Tls.Crypto; |
|
|
|
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Tls |
|
{ |
|
public abstract class DefaultTlsClient |
|
: AbstractTlsClient |
|
{ |
|
private static readonly int[] DefaultCipherSuites = new int[] |
|
{ |
|
/* |
|
* TODO[tls13] TLS 1.3 |
|
*/ |
|
//CipherSuite.TLS_CHACHA20_POLY1305_SHA256, |
|
//CipherSuite.TLS_AES_128_GCM_SHA256, |
|
|
|
/* |
|
* pre-TLS 1.3 |
|
*/ |
|
CipherSuite.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, |
|
CipherSuite.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, |
|
CipherSuite.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, |
|
CipherSuite.TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, |
|
CipherSuite.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, |
|
CipherSuite.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, |
|
CipherSuite.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, |
|
CipherSuite.TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, |
|
CipherSuite.TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256, |
|
CipherSuite.TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, |
|
CipherSuite.TLS_DHE_RSA_WITH_AES_128_CBC_SHA256, |
|
CipherSuite.TLS_DHE_RSA_WITH_AES_128_CBC_SHA, |
|
CipherSuite.TLS_RSA_WITH_AES_128_GCM_SHA256, |
|
CipherSuite.TLS_RSA_WITH_AES_128_CBC_SHA256, |
|
CipherSuite.TLS_RSA_WITH_AES_128_CBC_SHA, |
|
}; |
|
|
|
public DefaultTlsClient(TlsCrypto crypto) |
|
: base(crypto) |
|
{ |
|
} |
|
|
|
protected override int[] GetSupportedCipherSuites() |
|
{ |
|
return TlsUtilities.GetSupportedCipherSuites(Crypto, DefaultCipherSuites); |
|
} |
|
} |
|
} |
|
#pragma warning restore |
|
#endif
|
|
|