1 implementation of ILookupProtectorKeyRing
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (1)
UserStoreEncryptPersonalDataTest.cs (1)
34public class DefaultKeyRing : ILookupProtectorKeyRing
14 references to ILookupProtectorKeyRing
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
UserStoreEncryptPersonalDataTest.cs (2)
48private readonly ILookupProtectorKeyRing _keyRing; 50public SillyEncryptor(ILookupProtectorKeyRing keyRing) => _keyRing = keyRing;
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)
543var keyRing = _services.GetService<ILookupProtectorKeyRing>(); 608var keyRing = _services.GetRequiredService<ILookupProtectorKeyRing>(); 1298var keyRing = _services.GetService<ILookupProtectorKeyRing>();