3 implementations of CipherAlgorithm
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
596CipherAlgorithmType ITlsHandshakeFeature.CipherAlgorithm => Request.CipherAlgorithm;
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
414CipherAlgorithmType ITlsHandshakeFeature.CipherAlgorithm => CipherAlgorithm;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
59public CipherAlgorithmType CipherAlgorithm => _sslStream.CipherAlgorithm;
6 references to CipherAlgorithm
Http2SampleApp (2)
Program.cs (2)
51if (tlsFeature.CipherAlgorithm == CipherAlgorithmType.Null) 53throw new NotSupportedException("Prohibited cipher: " + tlsFeature.CipherAlgorithm);
IIS.Tests (1)
TlsHandshakeFeatureTests.cs (1)
37var cipherAlgorithm = tlsHandshakeFeature.CipherAlgorithm;
InMemory.FunctionalTests (2)
HttpsConnectionMiddlewareTests.cs (2)
151Assert.True(tlsFeature.CipherAlgorithm > CipherAlgorithmType.Null, "Cipher"); 189Assert.True(tlsFeature.CipherAlgorithm > CipherAlgorithmType.Null, "Cipher");
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (1)
HttpsTests.cs (1)
223Assert.Equal((uint)tlsFeature.CipherAlgorithm, tlsCopy.CipherType);