5 writes to CustomTrustStore
Microsoft.AspNetCore.Authentication.Test (5)
CertificateTests.cs (5)
320
CustomTrustStore
= new X509Certificate2Collection() { Certificates.SignedSecondaryRoot },
337
CustomTrustStore
= new X509Certificate2Collection() { Certificates.SelfSignedPrimaryRoot, Certificates.SignedSecondaryRoot },
355
CustomTrustStore
= new X509Certificate2Collection() { Certificates.SelfSignedPrimaryRoot, },
373
CustomTrustStore
= new X509Certificate2Collection() { Certificates.SelfSignedPrimaryRoot, },
850
options.
CustomTrustStore
= configureOptions.CustomTrustStore;
5 references to CustomTrustStore
Microsoft.AspNetCore.Authentication.Certificate (4)
CertificateAuthenticationHandler.cs (2)
219
if (Options.
CustomTrustStore
!= null)
221
chainPolicy.CustomTrustStore.AddRange(Options.
CustomTrustStore
);
CertificateAuthenticationOptions.cs (2)
32
/// Method used to validate certificate chains against <see cref="
CustomTrustStore
"/>.
37
/// <remarks>This property must be set to <see cref="X509ChainTrustMode.CustomRootTrust"/> to enable <see cref="
CustomTrustStore
"/> to be used in certificate chain validation.</remarks>
Microsoft.AspNetCore.Authentication.Test (1)
CertificateTests.cs (1)
850
options.CustomTrustStore = configureOptions.
CustomTrustStore
;