我在连接到 SSL 服务器时遇到错误。当我做这样的事情时,我仍然会遇到一些加密错误:
_client = new TcpClient();
_sslStream = new SslStream(_client.GetStream(), false, (x, y, z, v) => true, null);
它总是给我 CryptographicException: Unsupported hash algorithm: 1.2.840.113549.1.1.11
任何想法如何解决这个问题?