1 write to Trust
System.Net.Security (1)
System\Net\Security\SslStreamCertificateContext.Linux.cs (1)
62Trust = trust;
6 references to Trust
System.Net.Security (6)
src\libraries\Common\src\Interop\Unix\System.Security.Cryptography.Native\Interop.OpenSsl.cs (2)
482if (sslAuthenticationOptions.CertificateContext.Trust?._sendTrustInHandshake == true) 484SslCertificateTrust trust = sslAuthenticationOptions.CertificateContext!.Trust!;
System\Net\Security\SslStream.IO.cs (1)
604if (!VerifyRemoteCertificate(_sslAuthenticationOptions.CertValidationDelegate, _sslAuthenticationOptions.CertificateContext?.Trust, ref alertToken, out sslPolicyErrors, out chainStatus))
System\Net\Security\SslStream.Protocol.cs (2)
746byte[] guessedThumbPrint = selectedCert.GetCertHash(HashAlgorithmName.SHA512); bool sendTrustedList = _sslAuthenticationOptions.CertificateContext!.Trust?._sendTrustInHandshake ?? false; 876sendTrustList = _sslAuthenticationOptions.CertificateContext?.Trust?._sendTrustInHandshake ?? false;
System\Net\Security\SslStreamCertificateContext.cs (1)
180return Create(new X509Certificate2(TargetCertificate), intermediates, trust: Trust);