3 implementations of HashStrength
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
601int ITlsHandshakeFeature.HashStrength => Request.HashStrength;
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
418int ITlsHandshakeFeature.HashStrength => HashStrength;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
63public int HashStrength => _sslStream.HashStrength;
4 references to HashStrength
IIS.Tests (1)
TlsHandshakeFeatureTests.cs (1)
45var hashStrength = tlsHandshakeFeature.HashStrength;
InMemory.FunctionalTests (2)
HttpsConnectionMiddlewareTests.cs (2)
153Assert.True(tlsFeature.HashStrength >= 0, "HashStrength"); // May be 0 for some algorithms 189Assert.True(tlsFeature.HashStrength >= 0, "HashStrength"); // May be 0 for some algorithms
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (1)
HttpsTests.cs (1)
219Assert.Equal(tlsFeature.HashStrength, (int)tlsCopy.HashStrength);