41 references to None
Aspire.Hosting.Yarp (4)
ConfigurationBuilder\YarpCluster.cs (2)
344var result = SslProtocols.None; 349YarpSslProtocol.None => SslProtocols.None,
YarpEnvConfigGenerator.cs (1)
76if (protocol != SslProtocols.None)
YarpJsonConfigGeneratorBuilder.cs (1)
138if (protocol != SslProtocols.None)
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\SecurityUtils.cs (1)
88SslProtocols allValues = SslProtocols.None;
Microsoft.AspNetCore.Server.Kestrel.Core (8)
HttpsConnectionAdapterOptions.cs (1)
76/// Specifies allowable SSL protocols. Defaults to <see cref="SslProtocols.None" /> which allows the operating system to choose the best protocol to use,
Internal\ConfigurationReader.cs (7)
200return stringProtocols?.Aggregate(SslProtocols.None, (acc, current) => 306(SslProtocols ?? System.Security.Authentication.SslProtocols.None) == (other.SslProtocols ?? System.Security.Authentication.SslProtocols.None) && 313Protocols ?? ListenOptions.DefaultHttpProtocols, SslProtocols ?? System.Security.Authentication.SslProtocols.None, 348(SslProtocols ?? System.Security.Authentication.SslProtocols.None) == (other.SslProtocols ?? System.Security.Authentication.SslProtocols.None) && 353Protocols ?? ListenOptions.DefaultHttpProtocols, SslProtocols ?? System.Security.Authentication.SslProtocols.None,
System.Net.Http.WinHttpHandler (2)
System\Net\Http\WinHttpHandler.cs (2)
66private SslProtocols _sslProtocols = SslProtocols.None; // Use most secure protocols available. 1170if (_sslProtocols == SslProtocols.None)
System.Net.Security (23)
src\runtime\src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.OpenSsl.cs (3)
142if (protocols != SslProtocols.None && 151if (protocols == SslProtocols.None) 194SslProtocols serverProtocolCacheKey = protocols | (hasAlpn ? FakeAlpnSslProtocol : SslProtocols.None);
System\Net\Security\CipherSuitesPolicyPal.Linux.cs (1)
124=> protocols == SslProtocols.None || (protocols & SslProtocols.Tls13) != 0;
System\Net\Security\NetSecurityTelemetry.cs (1)
171HandshakeStop(SslProtocols.None);
System\Net\Security\SslAuthenticationOptions.cs (1)
179if ((protocols & (SslProtocols.Tls12 | SslProtocols.Tls13)) != SslProtocols.None)
System\Net\Security\SslClientAuthenticationOptions.cs (1)
16private SslProtocols _enabledSslProtocols = SslProtocols.None;
System\Net\Security\SslConnectionInfo.Linux.cs (1)
104return SslProtocols.None;
System\Net\Security\SslServerAuthenticationOptions.cs (1)
14private SslProtocols _enabledSslProtocols = SslProtocols.None;
System\Net\Security\SslStream.cs (12)
235return BeginAuthenticateAsClient(targetHost, null, SslProtocols.None, false, 242return BeginAuthenticateAsClient(targetHost, clientCertificates, SslProtocols.None, checkCertificateRevocation, asyncCallback, asyncState); 272return BeginAuthenticateAsServer(serverCertificate, false, SslProtocols.None, false, 280return BeginAuthenticateAsServer(serverCertificate, clientCertificateRequired, SslProtocols.None, checkCertificateRevocation, asyncCallback, asyncState); 314AuthenticateAsClient(targetHost, null, SslProtocols.None, false); 319AuthenticateAsClient(targetHost, clientCertificates, SslProtocols.None, checkCertificateRevocation); 348AuthenticateAsServer(serverCertificate, false, SslProtocols.None, false); 353AuthenticateAsServer(serverCertificate, clientCertificateRequired, SslProtocols.None, checkCertificateRevocation); 382public virtual Task AuthenticateAsClientAsync(string targetHost, X509CertificateCollection? clientCertificates, bool checkCertificateRevocation) => AuthenticateAsClientAsync(targetHost, clientCertificates, SslProtocols.None, checkCertificateRevocation); 408AuthenticateAsServerAsync(serverCertificate, false, SslProtocols.None, false); 499return SslProtocols.None; 503SslProtocols ret = SslProtocols.None;
System\Net\Security\TlsFrameHelper.cs (2)
659protocols = SslProtocols.None; 763_ => SslProtocols.None,
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\SslProtocolsHelper.cs (1)
13SslProtocols allValues = SslProtocols.None;
System.ServiceModel.NetTcp (1)
System\ServiceModel\Channels\SslProtocolsHelper.cs (1)
13SslProtocols allValues = SslProtocols.None;
System.ServiceModel.UnixDomainSocket (1)
System\ServiceModel\Channels\SslProtocolsHelper.cs (1)
13SslProtocols allValues = SslProtocols.None;