13 references to ExchangeAlgorithmType
Microsoft.AspNetCore.Connections.Abstractions (2)
Features\ITlsHandshakeFeature.cs (2)
71
/// Gets the <see cref="
ExchangeAlgorithmType
"/>.
76
ExchangeAlgorithmType
KeyExchangeAlgorithm { get; }
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\TlsConnectionFeature.cs (2)
32
private
ExchangeAlgorithmType
_keyExchangeAlgorithm;
128
public
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)
201
ExchangeAlgorithmType
keyExchangeAlgorithm,
System\Net\Security\SslConnectionInfo.Unix.cs (4)
24
new[] { (int)
ExchangeAlgorithmType
.None, (int)
ExchangeAlgorithmType
.RsaSign, (int)
ExchangeAlgorithmType
.RsaKeyX, (int)
ExchangeAlgorithmType
.DiffieHellman, };
System\Net\Security\SslStream.cs (2)
628
public virtual
ExchangeAlgorithmType
KeyExchangeAlgorithm
633
return (
ExchangeAlgorithmType
)_connectionInfo.KeyExchangeAlg;