1 write to Configuration
Microsoft.AspNetCore.DataProtection (1)
AuthenticatedEncryption\ConfigurationModel\CngCbcAuthenticatedEncryptorDescriptor.cs (1)
28
Configuration
= configuration;
8 references to Configuration
Microsoft.AspNetCore.DataProtection (8)
AuthenticatedEncryption\CngCbcAuthenticatedEncryptorFactory.cs (1)
44
return CreateAuthenticatedEncryptorInstance(descriptor.MasterKey, descriptor.
Configuration
);
AuthenticatedEncryption\ConfigurationModel\CngCbcAuthenticatedEncryptorDescriptor.cs (7)
47
new XAttribute("algorithm",
Configuration
.EncryptionAlgorithm),
48
new XAttribute("keyLength",
Configuration
.EncryptionAlgorithmKeySize));
49
if (
Configuration
.EncryptionAlgorithmProvider != null)
51
encryptionElement.SetAttributeValue("provider",
Configuration
.EncryptionAlgorithmProvider);
55
new XAttribute("algorithm",
Configuration
.HashAlgorithm));
56
if (
Configuration
.HashAlgorithmProvider != null)
58
hashElement.SetAttributeValue("provider",
Configuration
.HashAlgorithmProvider);