13 references to ExchangeAlgorithmType
Microsoft.AspNetCore.Connections.Abstractions (2)
Features\ITlsHandshakeFeature.cs (2)
71/// Gets the <see cref="ExchangeAlgorithmType"/>. 76ExchangeAlgorithmType KeyExchangeAlgorithm { get; }
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\TlsConnectionFeature.cs (2)
32private ExchangeAlgorithmType _keyExchangeAlgorithm; 128public ExchangeAlgorithmType KeyExchangeAlgorithm => _snapshotted ? _keyExchangeAlgorithm : _sslStream.KeyExchangeAlgorithm;
netstandard (1)
netstandard.cs (1)
1824[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Authentication.ExchangeAlgorithmType))]
System (1)
src\runtime\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)
628public virtual ExchangeAlgorithmType KeyExchangeAlgorithm 633return (ExchangeAlgorithmType)_connectionInfo.KeyExchangeAlg;