11 references to Ssl2
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\KestrelMetrics.cs (1)
350
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)
456
if (!_isRenego && _buffer.EncryptedReadOnlySpan[_lastFrame.Header.Version == SslProtocols.
Ssl2
? HandshakeTypeOffsetSsl2 : HandshakeTypeOffsetTls] == (byte)TlsHandshakeType.ClientHello &&
527
_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
)