15 references to Ssl2
Microsoft.AspNetCore.Server.HttpSys (2)
src\aspnetcore\src\Shared\HttpSys\RequestProcessing\NativeRequestContext.cs (2)
398
if ((protocol & (uint)SslProtocols.
Ssl2
) != 0)
400
protocol |= (uint)SslProtocols.
Ssl2
;
Microsoft.AspNetCore.Server.IIS (2)
src\aspnetcore\src\Shared\HttpSys\RequestProcessing\NativeRequestContext.cs (2)
398
if ((protocol & (uint)SslProtocols.
Ssl2
) != 0)
400
protocol |= (uint)SslProtocols.
Ssl2
;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\KestrelMetrics.cs (1)
377
case SslProtocols.
Ssl2
:
System.Net.Http.WinHttpHandler (1)
System\Net\Http\WinHttpHandler.cs (1)
1176
if ((_sslProtocols & SslProtocols.
Ssl2
) != 0)
System.Net.Security (9)
System\Net\Security\NetSecurityTelemetry.cs (1)
354
SslProtocols.
Ssl2
=> ("ssl", "2"),
System\Net\Security\SslAuthenticationOptions.cs (1)
183
protocols &= ~SslProtocols.
Ssl2
;
System\Net\Security\SslConnectionInfo.Linux.cs (1)
94
return SslProtocols.
Ssl2
;
System\Net\Security\SslStream.cs (2)
507
if ((proto & SslProtocols.
Ssl2
) != 0)
509
ret |= SslProtocols.
Ssl2
;
System\Net\Security\SslStream.IO.cs (2)
446
if (!_isRenego && _buffer.EncryptedReadOnlySpan[_lastFrame.Header.Version == SslProtocols.
Ssl2
? HandshakeTypeOffsetSsl2 : HandshakeTypeOffsetTls] == (byte)TlsHandshakeType.ClientHello &&
517
_buffer.EncryptedReadOnlySpan[_lastFrame.Header.Version == SslProtocols.
Ssl2
? HandshakeTypeOffsetSsl2 : HandshakeTypeOffsetTls] == (byte)TlsHandshakeType.ClientHello;
System\Net\Security\TlsFrameHelper.cs (2)
207
header.Version = SslProtocols.
Ssl2
;
260
if (info.Header.Version == SslProtocols.
Ssl2
)