2 implementations of GetAuthenticatedEncryptorByKeyId
Microsoft.AspNetCore.DataProtection (2)
EphemeralDataProtectionProvider.cs (1)
87public IAuthenticatedEncryptor? GetAuthenticatedEncryptorByKeyId(Guid keyId, out bool isRevoked)
KeyManagement\KeyRing.cs (1)
56public IAuthenticatedEncryptor? GetAuthenticatedEncryptorByKeyId(Guid keyId, out bool isRevoked)
2 references to GetAuthenticatedEncryptorByKeyId
Microsoft.AspNetCore.DataProtection (2)
KeyManagement\KeyRingBasedDataProtector.cs (2)
229var requestedEncryptor = currentKeyRing.GetAuthenticatedEncryptorByKeyId(keyIdFromPayload, out keyWasRevoked); 235requestedEncryptor = currentKeyRing.GetAuthenticatedEncryptorByKeyId(keyIdFromPayload, out keyWasRevoked);