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