2 instantiations of CertificateAuthority
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
src\Servers\Kestrel\shared\test\CertificateAuthority.cs (2)
845rootAuthority = new CertificateAuthority( 876CertificateAuthority intermediateAuthority = new CertificateAuthority(
21 references to CertificateAuthority
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (21)
src\Servers\Kestrel\shared\test\CertHelper.cs (4)
132CertificateAuthority.BuildPrivatePki( 135out CertificateAuthority root, 136out CertificateAuthority[] intermediates, 151CertificateAuthority authority = intermediates[i];
src\Servers\Kestrel\shared\test\CertificateAuthority.cs (9)
791out CertificateAuthority rootAuthority, 792out CertificateAuthority[] intermediateAuthorities, 851CertificateAuthority issuingAuthority = rootAuthority; 852intermediateAuthorities = new CertificateAuthority[intermediateAuthorityCount]; 876CertificateAuthority intermediateAuthority = new CertificateAuthority( 900foreach (CertificateAuthority authority in intermediateAuthorities) 910out CertificateAuthority rootAuthority, 911out CertificateAuthority intermediateAuthority, 925out CertificateAuthority[] intermediateAuthorities,
src\Servers\Kestrel\shared\test\RevocationResponder.cs (8)
19private readonly Dictionary<string, CertificateAuthority> _aiaPaths = 20new Dictionary<string, CertificateAuthority>(); 22private readonly Dictionary<string, CertificateAuthority> _crlPaths 23= new Dictionary<string, CertificateAuthority>(); 25private readonly List<(string, CertificateAuthority)> _ocspAuthorities = 26new List<(string, CertificateAuthority)>(); 46internal void AddCertificateAuthority(CertificateAuthority authority) 172CertificateAuthority authority;