5 instantiations of AuthenticatedEncryptorConfiguration
Microsoft.AspNetCore.DataProtection (2)
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptorDeserializer.cs (1)
31var configuration = new AuthenticatedEncryptorConfiguration();
Internal\KeyManagementOptionsSetup.cs (1)
69options.AuthenticatedEncryptorConfiguration = new AuthenticatedEncryptorConfiguration();
Microsoft.AspNetCore.DataProtection.Tests (3)
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptorDeserializerTests.cs (1)
19new AuthenticatedEncryptorConfiguration()
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptorTests.cs (1)
190return new AuthenticatedEncryptorDescriptor(new AuthenticatedEncryptorConfiguration()
KeyManagement\KeyRingBasedDataProtectorTests.cs (1)
562Key key = new Key(Guid.NewGuid(), DateTimeOffset.Now, DateTimeOffset.Now, DateTimeOffset.Now, new AuthenticatedEncryptorConfiguration().CreateNewDescriptor(), new[] { encryptorFactory });
9 references to AuthenticatedEncryptorConfiguration
Microsoft.AspNetCore.DataProtection (8)
AuthenticatedEncryption\AuthenticatedEncryptorFactory.cs (2)
20/// based on the <see cref="AuthenticatedEncryptorConfiguration"/>. 49AuthenticatedEncryptorConfiguration? authenticatedConfiguration)
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptor.cs (3)
12/// configuration provided by an <see cref="AuthenticatedEncryptorConfiguration"/> object. 21public AuthenticatedEncryptorDescriptor(AuthenticatedEncryptorConfiguration configuration, ISecret masterKey) 32internal AuthenticatedEncryptorConfiguration Configuration { get; }
AuthenticatedEncryption\ConfigurationModel\AuthenticatedEncryptorDescriptorDeserializer.cs (1)
31var configuration = new AuthenticatedEncryptorConfiguration();
DataProtectionBuilderExtensions.cs (1)
425public static IDataProtectionBuilder UseCryptographicAlgorithms(this IDataProtectionBuilder builder, AuthenticatedEncryptorConfiguration configuration)
IDataProtectionBuilder.cs (1)
26/// A call to <see cref="DataProtectionBuilderExtensions.UseCryptographicAlgorithms(IDataProtectionBuilder,AuthenticatedEncryptorConfiguration)"/>
Microsoft.AspNetCore.DataProtection.Tests (1)
Internal\KeyManagementOptionsSetupTest.cs (1)
33Assert.IsType<AuthenticatedEncryptorConfiguration>(options.AuthenticatedEncryptorConfiguration);