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