refactor(AsymCryptService): Nicht-generische Schnittstelle erstellt.

- Geordnete DI-Registrierungsmethoden.
This commit is contained in:
Developer 02
2024-12-13 14:44:09 +01:00
parent 82aa8d1143
commit 644283cf8f
2 changed files with 41 additions and 11 deletions

View File

@@ -1,9 +1,11 @@
namespace DigitalData.Core.Abstractions.Security
{
public interface IAsymCryptService<TParams> : IRSAFactory<TParams>
public interface IAsymCryptService : IRSAFactory
{
public IEnumerable<IRSADecryptor> Decryptors { get; }
public IEnumerable<IRSAEncryptor> Encryptors { get; }
}
public interface IAsymCryptService<TParams> : IAsymCryptService, IRSAFactory<TParams> { }
}