refactor(AsymCryptService): umbenannt in AsymCryptHandler

This commit is contained in:
Developer 02
2025-01-06 10:44:03 +01:00
parent a3931414e3
commit 389d64c25d
4 changed files with 6 additions and 18 deletions

View File

@@ -16,7 +16,7 @@ namespace DigitalData.Core.Security
private static IServiceCollection AddAsymCryptService(this IServiceCollection services) => services
.AddParamsConfigureOptions<AsymCryptParams>()
.AddAutoMapper(typeof(MappingProfile).Assembly)
.AddSingleton<IAsymCryptService, AsymCryptService>();
.AddSingleton<IAsymCryptHandler, AsymCryptHandler>();
/// <summary>
/// Registers a custom asym crypt service with specified parameters from the given configuration section.