17 writes to AuthenticatedEncryptorConfiguration
KeyManagementSimulator (1)
Program.cs (1)
365AuthenticatedEncryptorConfiguration = 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 (13)
Internal\KeyManagementOptionsSetupTest.cs (2)
28AuthenticatedEncryptorConfiguration = null 59AuthenticatedEncryptorConfiguration = null
KeyManagement\XmlKeyManagerTests.cs (11)
40AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 64AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 107AuthenticatedEncryptorConfiguration = mockConfiguration.Object, 205AuthenticatedEncryptorConfiguration = mockConfiguration.Object, 311AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 606AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 633AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 683AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 738AuthenticatedEncryptorConfiguration = new Mock<AlgorithmConfiguration>().Object, 804AuthenticatedEncryptorConfiguration = authenticatedEncryptorConfiguration.Object, 943AuthenticatedEncryptorConfiguration = new AuthenticatedEncryptorConfiguration(),
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)
36Assert.NotNull(options.AuthenticatedEncryptorConfiguration); 37Assert.IsType<AuthenticatedEncryptorConfiguration>(options.AuthenticatedEncryptorConfiguration); 71Assert.NotNull(options.AuthenticatedEncryptorConfiguration); 72Assert.IsType<ManagedAuthenticatedEncryptorConfiguration>(options.AuthenticatedEncryptorConfiguration);