I'm struggling with an error when connecting to SSL server. I still get some cryptographic error when I do something like this:
_client = new TcpClient();
_sslStream = new SslStream(_client.GetStream(), false, (x, y, z, v) => true, null);
It always gives me CryptographicException: Unsupported hash algorithm: 1.2.840.113549.1.1.11
Any ideas how to solve this issue?