Commit 69209495 authored by Jim's avatar Jim

Update the TLS version used in TransparentClientHandler.cs

parent 816509f1
......@@ -71,7 +71,7 @@ namespace Titanium.Web.Proxy
await CertificateManager.CreateServerCertificate(certName);
// Successfully managed to authenticate the client using the certificate
await sslStream.AuthenticateAsServerAsync(certificate, false, SslProtocols.Tls, false);
await sslStream.AuthenticateAsServerAsync(certificate, false, SslProtocols.Tls12, false);
// HTTPS server created - we can now decrypt the client's traffic
clientStream = new HttpClientStream(clientStream.Connection, sslStream, BufferPool, cancellationToken);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment