feat: hinzugefügte Index-Eigenschaft zur IAsymCryptService-Schnittstelle

- Neue Index-Eigenschaft `this[string key]` zur `IAsymCryptService`-Schnittstelle hinzugefügt.
- Ermöglicht das Abrufen spezifischer `IRSADecryptor`-Instanzen anhand eines Schlüsselstrings.
- Schnittstellendefinition aktualisiert, um die Funktionalität für implementierende Klassen zu erweitern.
This commit is contained in:
Developer 02 2024-12-13 16:59:02 +01:00
parent 5d9d756b91
commit 6a92466490

View File

@ -3,6 +3,8 @@
public interface IAsymCryptService : IRSAFactory
{
public IEnumerable<IRSADecryptor> Decryptors { get; }
public IRSADecryptor this[string key] { get; }
}
public interface IAsymCryptService<TParams> : IAsymCryptService, IRSAFactory<TParams> { }