33 references to CipherAlgorithmType
Http2SampleApp (1)
Program.cs (1)
49if (tlsFeature.CipherAlgorithm == CipherAlgorithmType.Null)
IIS.Tests (2)
TlsHandshakeFeatureTests.cs (2)
36var cipherAlgorithm = tlsHandshakeFeature.CipherAlgorithm; 37Assert.True(cipherAlgorithm > CipherAlgorithmType.Null, "Cipher: " + cipherAlgorithm);
InMemory.FunctionalTests (2)
HttpsConnectionMiddlewareTests.cs (2)
150Assert.True(tlsFeature.CipherAlgorithm > CipherAlgorithmType.Null, "Cipher"); 186Assert.True(tlsFeature.CipherAlgorithm > CipherAlgorithmType.Null, "Cipher");
Microsoft.AspNetCore.Connections.Abstractions (2)
Features\ITlsHandshakeFeature.cs (2)
36/// Gets the <see cref="CipherAlgorithmType"/>. 38CipherAlgorithmType CipherAlgorithm { get; }
Microsoft.AspNetCore.Server.HttpSys (3)
RequestProcessing\Request.cs (2)
339public CipherAlgorithmType CipherAlgorithm { get; private set; } 355CipherAlgorithm = (CipherAlgorithmType)handshake.CipherType;
RequestProcessing\RequestContext.FeatureCollection.cs (1)
595CipherAlgorithmType ITlsHandshakeFeature.CipherAlgorithm => Request.CipherAlgorithm;
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (3)
HttpsTests.cs (3)
168var cipherAlgorithm = (CipherAlgorithmType)result.GetProperty("cipherAlgorithm").GetInt32(); 169Assert.True(cipherAlgorithm > CipherAlgorithmType.Null, "Cipher: " + cipherAlgorithm);
Microsoft.AspNetCore.Server.IIS (3)
Core\IISHttpContext.cs (2)
121public CipherAlgorithmType CipherAlgorithm { get; private set; } 398CipherAlgorithm = (CipherAlgorithmType)handshake.CipherType;
Core\IISHttpContext.FeatureCollection.cs (1)
412CipherAlgorithmType ITlsHandshakeFeature.CipherAlgorithm => CipherAlgorithm;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
57public CipherAlgorithmType CipherAlgorithm => _sslStream.CipherAlgorithm;
netstandard (1)
netstandard.cs (1)
1823[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Authentication.CipherAlgorithmType))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
838[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Authentication.CipherAlgorithmType))]
System.DirectoryServices.Protocols (1)
artifacts\obj\System.DirectoryServices.Protocols\Debug\net10.0\System.DirectoryServices.Protocols.notsupported.cs (1)
664public System.Security.Authentication.CipherAlgorithmType AlgorithmIdentifier { get { throw new System.PlatformNotSupportedException(System.SR.DirectoryServicesProtocols_PlatformNotSupported); } }
System.Net.Security (13)
System\Net\Security\NetEventSource.Security.cs (1)
197CipherAlgorithmType cipherAlgorithm,
System\Net\Security\SslConnectionInfo.Unix.cs (10)
26new[] { (int)CipherAlgorithmType.None, (int)CipherAlgorithmType.Null, (int)CipherAlgorithmType.Des, (int)CipherAlgorithmType.Rc2, (int)CipherAlgorithmType.TripleDes, (int)CipherAlgorithmType.Aes128, (int)CipherAlgorithmType.Aes192, (int)CipherAlgorithmType.Aes256, (int)CipherAlgorithmType.Aes, (int)CipherAlgorithmType.Rc4, };
System\Net\Security\SslStream.cs (2)
584public virtual CipherAlgorithmType CipherAlgorithm 589return (CipherAlgorithmType)_connectionInfo.DataCipherAlg;