25 references to ExchangeAlgorithmType
IIS.Tests (2)
TlsHandshakeFeatureTests.cs (2)
49var keyExchangeAlgorithm = tlsHandshakeFeature.KeyExchangeAlgorithm; 50Assert.True(keyExchangeAlgorithm >= ExchangeAlgorithmType.None, "KeyExchangeAlgorithm: " + keyExchangeAlgorithm);
InMemory.FunctionalTests (2)
HttpsConnectionMiddlewareTests.cs (2)
155Assert.True(tlsFeature.KeyExchangeAlgorithm >= ExchangeAlgorithmType.None, "KeyExchangeAlgorithm"); // Maybe None on Windows 7 193Assert.True(tlsFeature.KeyExchangeAlgorithm >= ExchangeAlgorithmType.None, "KeyExchangeAlgorithm"); // Maybe None on Windows 7
Microsoft.AspNetCore.Connections.Abstractions (2)
Features\ITlsHandshakeFeature.cs (2)
71/// Gets the <see cref="ExchangeAlgorithmType"/>. 76ExchangeAlgorithmType KeyExchangeAlgorithm { get; }
Microsoft.AspNetCore.Server.HttpSys (3)
RequestProcessing\Request.cs (2)
353public ExchangeAlgorithmType KeyExchangeAlgorithm { get; private set; } 367KeyExchangeAlgorithm = (ExchangeAlgorithmType)handshake.KeyExchangeType;
RequestProcessing\RequestContext.FeatureCollection.cs (1)
604ExchangeAlgorithmType ITlsHandshakeFeature.KeyExchangeAlgorithm => Request.KeyExchangeAlgorithm;
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (3)
HttpsTests.cs (3)
185var keyExchangeAlgorithm = (ExchangeAlgorithmType)result.GetProperty("keyExchangeAlgorithm").GetInt32(); 186Assert.True(keyExchangeAlgorithm >= ExchangeAlgorithmType.None, "KeyExchangeAlgorithm: " + keyExchangeAlgorithm);
Microsoft.AspNetCore.Server.IIS (3)
Core\IISHttpContext.cs (2)
131public ExchangeAlgorithmType KeyExchangeAlgorithm { get; private set; } 410KeyExchangeAlgorithm = (ExchangeAlgorithmType)handshake.KeyExchangeType;
Core\IISHttpContext.FeatureCollection.cs (1)
426ExchangeAlgorithmType ITlsHandshakeFeature.KeyExchangeAlgorithm => KeyExchangeAlgorithm;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
71public ExchangeAlgorithmType KeyExchangeAlgorithm => _sslStream.KeyExchangeAlgorithm;
netstandard (1)
netstandard.cs (1)
1824[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Authentication.ExchangeAlgorithmType))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
839[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Authentication.ExchangeAlgorithmType))]
System.Net.Security (7)
System\Net\Security\NetEventSource.Security.cs (1)
201ExchangeAlgorithmType keyExchangeAlgorithm,
System\Net\Security\SslConnectionInfo.Unix.cs (4)
24new[] { (int)ExchangeAlgorithmType.None, (int)ExchangeAlgorithmType.RsaSign, (int)ExchangeAlgorithmType.RsaKeyX, (int)ExchangeAlgorithmType.DiffieHellman, };
System\Net\Security\SslStream.cs (2)
624public virtual ExchangeAlgorithmType KeyExchangeAlgorithm 629return (ExchangeAlgorithmType)_connectionInfo.KeyExchangeAlg;