2 instantiations of CngGcmAuthenticatedEncryptorDescriptor
Microsoft.AspNetCore.DataProtection (2)
AuthenticatedEncryption\ConfigurationModel\CngGcmAuthenticatedEncryptorConfiguration.cs (1)
61return new CngGcmAuthenticatedEncryptorDescriptor(this, secret);
AuthenticatedEncryption\ConfigurationModel\CngGcmAuthenticatedEncryptorDescriptorDeserializer.cs (1)
41return new CngGcmAuthenticatedEncryptorDescriptor(configuration, masterKey);
6 references to CngGcmAuthenticatedEncryptorDescriptor
Microsoft.AspNetCore.DataProtection (6)
AuthenticatedEncryption\CngGcmAuthenticatedEncryptorFactory.cs (2)
38var descriptor = key.Descriptor as CngGcmAuthenticatedEncryptorDescriptor;
AuthenticatedEncryption\ConfigurationModel\CngGcmAuthenticatedEncryptorDescriptor.cs (1)
19/// Initializes a new instance of <see cref="CngGcmAuthenticatedEncryptorDescriptor"/>.
AuthenticatedEncryption\ConfigurationModel\CngGcmAuthenticatedEncryptorDescriptorDeserializer.cs (1)
14/// of an <see cref="CngGcmAuthenticatedEncryptorDescriptor"/>.
EphemeralDataProtectionProvider.cs (2)
105var descriptor = (CngGcmAuthenticatedEncryptorDescriptor)new T().CreateNewDescriptor();