21 references to CipherAlgorithmType
Microsoft.AspNetCore.Connections.Abstractions (2)
Features\ITlsHandshakeFeature.cs (2)
39/// Gets the <see cref="CipherAlgorithmType"/>. 44CipherAlgorithmType CipherAlgorithm { get; }
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\TlsConnectionFeature.cs (2)
28private CipherAlgorithmType _cipherAlgorithm; 116public CipherAlgorithmType CipherAlgorithm => _snapshotted ? _cipherAlgorithm : _sslStream.CipherAlgorithm;
netstandard (1)
netstandard.cs (1)
1823[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Authentication.CipherAlgorithmType))]
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
838[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Authentication.CipherAlgorithmType))]
System.DirectoryServices.Protocols (2)
System\DirectoryServices\Protocols\ldap\LdapSessionOptions.cs (2)
75private readonly CipherAlgorithmType _identifier; 91public CipherAlgorithmType AlgorithmIdentifier => _identifier;
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)
588public virtual CipherAlgorithmType CipherAlgorithm 593return (CipherAlgorithmType)_connectionInfo.DataCipherAlg;