1 implementation of ICertificateValidationCache
Microsoft.AspNetCore.Authentication.Certificate (1)
CertificateValidationCache.cs (1)
15public class CertificateValidationCache : ICertificateValidationCache
4 references to ICertificateValidationCache
Microsoft.AspNetCore.Authentication.Certificate (3)
CertificateAuthenticationExtensions.cs (1)
90builder.Services.AddSingleton<ICertificateValidationCache, CertificateValidationCache>();
CertificateAuthenticationHandler.cs (2)
17private ICertificateValidationCache? _cache; 44_cache = Context.RequestServices.GetService<ICertificateValidationCache>();
Microsoft.AspNetCore.Authentication.Test (1)
CertificateTests.cs (1)
881services.AddSingleton<ICertificateValidationCache>(new CertificateValidationCache(Options.Create(new CertificateValidationCacheOptions()), timeProvider));