1 implementation of Descriptor
Microsoft.AspNetCore.DataProtection (1)
KeyManagement\Key.cs (1)
126public IAuthenticatedEncryptorDescriptor Descriptor
6 references to Descriptor
Microsoft.AspNetCore.DataProtection (6)
AuthenticatedEncryption\AuthenticatedEncryptorFactory.cs (1)
38if (key.Descriptor is not AuthenticatedEncryptorDescriptor descriptor)
AuthenticatedEncryption\CngCbcAuthenticatedEncryptorFactory.cs (1)
38if (key.Descriptor is not CngCbcAuthenticatedEncryptorDescriptor descriptor)
AuthenticatedEncryption\CngGcmAuthenticatedEncryptorFactory.cs (1)
38var descriptor = key.Descriptor as CngGcmAuthenticatedEncryptorDescriptor;
AuthenticatedEncryption\IAuthenticatedEncryptorFactory.cs (2)
15/// Creates an <see cref="IAuthenticatedEncryptor"/> instance based on the given <see cref="IKey.Descriptor"/>. 19/// For a given <see cref="IKey.Descriptor"/>, any two instances returned by this method should
AuthenticatedEncryption\ManagedAuthenticatedEncryptorFactory.cs (1)
33if (key.Descriptor is not ManagedAuthenticatedEncryptorDescriptor descriptor)