refactor(IAsymCryptHandler): Umbenannt in ICryptograph

This commit is contained in:
Developer 02
2025-01-07 12:01:39 +01:00
parent e8c98115b6
commit d9d61368e3
4 changed files with 8 additions and 8 deletions

View File

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