12 references to ILookupProtectorKeyRing
Microsoft.Extensions.Identity.Core (12)
DefaultPersonalDataProtector.cs (3)
10/// Default implementation of <see cref="IPersonalDataProtector"/> that uses <see cref="ILookupProtectorKeyRing"/> 15private readonly ILookupProtectorKeyRing _keyRing; 23public DefaultPersonalDataProtector(ILookupProtectorKeyRing keyRing, ILookupProtector protector)
IdentityBuilder.cs (3)
220/// Adds an <see cref="ILookupProtector"/> and <see cref="ILookupProtectorKeyRing"/>. 227where TKeyRing : class, ILookupProtectorKeyRing 231Services.AddSingleton<ILookupProtectorKeyRing, TKeyRing>();
UserManager.cs (6)
607var keyRing = ServiceProvider.GetService<ILookupProtectorKeyRing>(); 685var keyRing = ServiceProvider.GetRequiredService<ILookupProtectorKeyRing>(); 1567var keyRing = ServiceProvider.GetService<ILookupProtectorKeyRing>();