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