refactor(IRSAFactory): umbenannt in IAsymmetricKey

This commit is contained in:
Developer 02
2025-01-07 11:48:27 +01:00
parent 09dae1b1ac
commit e8c98115b6
6 changed files with 6 additions and 6 deletions

View File

@@ -9,6 +9,6 @@ namespace DigitalData.Core.Security
{
private static readonly Lazy<RSAFactory<RSAFactoryParams>> LazyInstance = new(() => new(Options.Create<RSAFactoryParams>(new())));
public static IRSAFactory RSAFactory => LazyInstance.Value;
public static IAsymmetricKeyFactory RSAFactory => LazyInstance.Value;
}
}