Refactor: Entfernung der generischen IRSAFactory und IAsymCryptService.

- RSAFactory und AsymCryptService aktualisiert.
 - Aktualisierte DI-Erweiterungen
This commit is contained in:
Developer 02
2024-12-20 10:30:12 +01:00
parent af478e974c
commit 79dffef528
5 changed files with 23 additions and 107 deletions

View File

@@ -5,7 +5,7 @@ using System.Security.Cryptography;
namespace DigitalData.Core.Security.Cryptographer
{
public class RSAFactory<TRSAFactoryParams> : IRSAFactory<TRSAFactoryParams> where TRSAFactoryParams : RSAFactoryParams
public class RSAFactory<TRSAFactoryParams> : IRSAFactory where TRSAFactoryParams : RSAFactoryParams
{
protected readonly TRSAFactoryParams _params;