1 write to _sslStream
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
27
_sslStream
= sslStream;
13 references to _sslStream
Microsoft.AspNetCore.Server.Kestrel.Core (13)
Internal\TlsConnectionFeature.cs (13)
37
return _clientCert ??= ConvertToX509Certificate2(
_sslStream
.RemoteCertificate);
48
public ReadOnlyMemory<byte> ApplicationProtocol =>
_sslStream
.NegotiatedApplicationProtocol.Protocol;
50
public SslProtocols Protocol =>
_sslStream
.SslProtocol;
52
public SslStream SslStream =>
_sslStream
;
56
public TlsCipherSuite? NegotiatedCipherSuite =>
_sslStream
.NegotiatedCipherSuite;
59
public CipherAlgorithmType CipherAlgorithm =>
_sslStream
.CipherAlgorithm;
62
public int CipherStrength =>
_sslStream
.CipherStrength;
65
public HashAlgorithmType HashAlgorithm =>
_sslStream
.HashAlgorithm;
68
public int HashStrength =>
_sslStream
.HashStrength;
71
public ExchangeAlgorithmType KeyExchangeAlgorithm =>
_sslStream
.KeyExchangeAlgorithm;
74
public int KeyExchangeStrength =>
_sslStream
.KeyExchangeStrength;
87
||
_sslStream
.NegotiatedApplicationProtocol == SslApplicationProtocol.Http2)
100
await
_sslStream
.NegotiateClientCertificateAsync(cancellationToken);