Skip to content

Instantly share code, notes, and snippets.

@Taloth
Created February 27, 2021 13:35
Show Gist options
  • Save Taloth/1e7702be5e1d38675aac099bc40e957d to your computer and use it in GitHub Desktop.
Save Taloth/1e7702be5e1d38675aac099bc40e957d to your computer and use it in GitHub Desktop.
mono elliptic curve tls test
using System;
namespace Test
{
class Program
{
static void Main()
{
try
{
Console.WriteLine(new System.Net.WebClient().DownloadString("https://services.sonarr.tv/v1/ping"));
Console.WriteLine(new System.Net.WebClient().DownloadString("https://ecc256.badssl.com"));
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment