Core/SSL: Fix no ciphers available when running on linux. Also fix travis builds
This commit is contained in:
+1
-1
@@ -2,7 +2,7 @@ language: csharp
|
||||
dist: xenial
|
||||
sudo: required
|
||||
mono: none
|
||||
dotnet: 3.1
|
||||
dotnet: 5.0
|
||||
script:
|
||||
- dotnet restore
|
||||
- dotnet build
|
||||
@@ -79,7 +79,7 @@ namespace Framework.Networking
|
||||
{
|
||||
try
|
||||
{
|
||||
await _stream.AuthenticateAsServerAsync(certificate, false, SslProtocols.Tls, false);
|
||||
await _stream.AuthenticateAsServerAsync(certificate, false, SslProtocols.Tls12, false);
|
||||
}
|
||||
catch(Exception ex)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user