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