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