17 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 (11)
System\Net\Security\NetSecurityTelemetry.cs (1)
354
SslProtocols.
Ssl2
=> ("ssl", "2"),
System\Net\Security\SslAuthenticationOptions.cs (1)
198
protocols &= ~SslProtocols.
Ssl2
;
System\Net\Security\SslConnectionInfo.Linux.cs (1)
94
return SslProtocols.
Ssl2
;
System\Net\Security\SslStream.cs (2)
508
if ((proto & SslProtocols.
Ssl2
) != 0)
510
ret |= SslProtocols.
Ssl2
;
System\Net\Security\SslStream.IO.cs (2)
469
if (!_isRenego && _buffer.EncryptedReadOnlySpan[_lastFrame.Header.Version == SslProtocols.
Ssl2
? HandshakeTypeOffsetSsl2 : HandshakeTypeOffsetTls] == (byte)TlsHandshakeType.ClientHello &&
540
_buffer.EncryptedReadOnlySpan[_lastFrame.Header.Version == SslProtocols.
Ssl2
? HandshakeTypeOffsetSsl2 : HandshakeTypeOffsetTls] == (byte)TlsHandshakeType.ClientHello;
System\Net\Security\TlsFrameHelper.cs (2)
206
header.Version = SslProtocols.
Ssl2
;
263
if (info.Header.Version == SslProtocols.
Ssl2
)
System\Net\Security\TlsSession.cs (2)
251
if ((proto & SslProtocols.
Ssl2
) != 0) ret |= SslProtocols.
Ssl2
;