3 implementations of HashAlgorithm
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
600HashAlgorithmType ITlsHandshakeFeature.HashAlgorithm => Request.HashAlgorithm;
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
420HashAlgorithmType ITlsHandshakeFeature.HashAlgorithm => HashAlgorithm;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
65public HashAlgorithmType HashAlgorithm => _sslStream.HashAlgorithm;
4 references to HashAlgorithm
IIS.Tests (1)
TlsHandshakeFeatureTests.cs (1)
43var hashAlgorithm = tlsHandshakeFeature.HashAlgorithm;
InMemory.FunctionalTests (2)
HttpsConnectionMiddlewareTests.cs (2)
153Assert.True(tlsFeature.HashAlgorithm >= HashAlgorithmType.None, "HashAlgorithm"); // May be None on Linux. 191Assert.True(tlsFeature.HashAlgorithm >= HashAlgorithmType.None, "HashAlgorithm"); // May be None on Linux.
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (1)
HttpsTests.cs (1)
225Assert.Equal((uint)tlsFeature.HashAlgorithm, tlsCopy.HashType);