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