16 references to Ssl2
InMemory.FunctionalTests (1)
EventSourceTests.cs (1)
297
EnabledSslProtocols = SslProtocols.
Ssl2
,
Microsoft.AspNetCore.Server.HttpSys (2)
src\Shared\HttpSys\RequestProcessing\NativeRequestContext.cs (2)
389
if ((protocol & (uint)SslProtocols.
Ssl2
) != 0)
391
protocol |= (uint)SslProtocols.
Ssl2
;
Microsoft.AspNetCore.Server.IIS (2)
src\Shared\HttpSys\RequestProcessing\NativeRequestContext.cs (2)
389
if ((protocol & (uint)SslProtocols.
Ssl2
) != 0)
391
protocol |= (uint)SslProtocols.
Ssl2
;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Infrastructure\KestrelMetrics.cs (1)
387
case SslProtocols.
Ssl2
:
Microsoft.AspNetCore.Shared.Tests (2)
src\Shared\HttpSys\RequestProcessing\NativeRequestContext.cs (2)
389
if ((protocol & (uint)SslProtocols.
Ssl2
) != 0)
391
protocol |= (uint)SslProtocols.
Ssl2
;
System.Net.Security (8)
System\Net\Security\NetSecurityTelemetry.cs (1)
354
SslProtocols.
Ssl2
=> ("ssl", "2"),
System\Net\Security\SslAuthenticationOptions.cs (1)
161
protocols &= ~SslProtocols.
Ssl2
;
System\Net\Security\SslConnectionInfo.Linux.cs (1)
94
return SslProtocols.
Ssl2
;
System\Net\Security\SslStream.cs (2)
503
if ((proto & SslProtocols.
Ssl2
) != 0)
505
ret |= SslProtocols.
Ssl2
;
System\Net\Security\SslStream.IO.cs (1)
431
if (!_isRenego && _buffer.EncryptedReadOnlySpan[_lastFrame.Header.Version == SslProtocols.
Ssl2
? HandshakeTypeOffsetSsl2 : HandshakeTypeOffsetTls] == (byte)TlsHandshakeType.ClientHello &&
System\Net\Security\TlsFrameHelper.cs (2)
208
header.Version = SslProtocols.
Ssl2
;
261
if (info.Header.Version == SslProtocols.
Ssl2
)