3 implementations of CipherStrength
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
597int ITlsHandshakeFeature.CipherStrength => Request.CipherStrength;
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
414int ITlsHandshakeFeature.CipherStrength => CipherStrength;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
59public int CipherStrength => _sslStream.CipherStrength;
4 references to CipherStrength
IIS.Tests (1)
TlsHandshakeFeatureTests.cs (1)
39var cipherStrength = tlsHandshakeFeature.CipherStrength;
InMemory.FunctionalTests (2)
HttpsConnectionMiddlewareTests.cs (2)
151Assert.True(tlsFeature.CipherStrength > 0, "CipherStrength"); 187Assert.True(tlsFeature.CipherStrength > 0, "CipherStrength");
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (1)
HttpsTests.cs (1)
217Assert.Equal(tlsFeature.CipherStrength, (int)tlsCopy.CipherStrength);