16 writes to AuthenticatedEncryptorConfiguration
KeyManagementSimulator (1)
Program.cs (1)
349AuthenticatedEncryptorConfiguration = authenticatedEncryptorConfiguration,
Microsoft.AspNetCore.DataProtection (3)
DataProtectionBuilderExtensions.cs (1)
501options.AuthenticatedEncryptorConfiguration = configuration;
Internal\KeyManagementOptionsSetup.cs (2)
55options.AuthenticatedEncryptorConfiguration = context.EncryptorConfiguration; 69options.AuthenticatedEncryptorConfiguration = new AuthenticatedEncryptorConfiguration();
Microsoft.AspNetCore.DataProtection.Tests (12)
Internal\KeyManagementOptionsSetupTest.cs (2)
24AuthenticatedEncryptorConfiguration = null 55AuthenticatedEncryptorConfiguration = null
KeyManagement\XmlKeyManagerTests.cs (10)
36AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 60AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 103AuthenticatedEncryptorConfiguration = mockConfiguration.Object, 201AuthenticatedEncryptorConfiguration = mockConfiguration.Object, 307AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 602AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 629AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 679AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 734AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 800AuthenticatedEncryptorConfiguration = authenticatedEncryptorConfiguration.Object,
6 references to AuthenticatedEncryptorConfiguration
Microsoft.AspNetCore.DataProtection (2)
Internal\KeyManagementOptionsSetup.cs (1)
67if (options.AuthenticatedEncryptorConfiguration == null)
KeyManagement\XmlKeyManager.cs (1)
113_authenticatedEncryptorConfiguration = keyManagementOptions.Value.AuthenticatedEncryptorConfiguration!;
Microsoft.AspNetCore.DataProtection.Tests (4)
Internal\KeyManagementOptionsSetupTest.cs (4)
32Assert.NotNull(options.AuthenticatedEncryptorConfiguration); 33Assert.IsType<AuthenticatedEncryptorConfiguration>(options.AuthenticatedEncryptorConfiguration); 67Assert.NotNull(options.AuthenticatedEncryptorConfiguration); 68Assert.IsType<ManagedAuthenticatedEncryptorConfiguration>(options.AuthenticatedEncryptorConfiguration);