21 references to CipherAlgorithmType
Microsoft.AspNetCore.Connections.Abstractions (2)
Features\ITlsHandshakeFeature.cs (2)
39
/// Gets the <see cref="
CipherAlgorithmType
"/>.
44
CipherAlgorithmType
CipherAlgorithm { get; }
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\TlsConnectionFeature.cs (2)
28
private
CipherAlgorithmType
_cipherAlgorithm;
116
public
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)
75
private readonly
CipherAlgorithmType
_identifier;
91
public
CipherAlgorithmType
AlgorithmIdentifier => _identifier;
System.Net.Security (13)
System\Net\Security\NetEventSource.Security.cs (1)
197
CipherAlgorithmType
cipherAlgorithm,
System\Net\Security\SslConnectionInfo.Unix.cs (10)
26
new[] { (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)
588
public virtual
CipherAlgorithmType
CipherAlgorithm
593
return (
CipherAlgorithmType
)_connectionInfo.DataCipherAlg;