From 6a9246649075e15443dfd1c0e3e64ab80f9fa1ce Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Fri, 13 Dec 2024 16:59:02 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20hinzugef=C3=BCgte=20Index-Eigenschaft?= =?UTF-8?q?=20zur=20IAsymCryptService-Schnittstelle=20-=20Neue=20Index-Eig?= =?UTF-8?q?enschaft=20`this[string=20key]`=20zur=20`IAsymCryptService`-Sch?= =?UTF-8?q?nittstelle=20hinzugef=C3=BCgt.=20-=20Erm=C3=B6glicht=20das=20Ab?= =?UTF-8?q?rufen=20spezifischer=20`IRSADecryptor`-Instanzen=20anhand=20ein?= =?UTF-8?q?es=20Schl=C3=BCsselstrings.=20-=20Schnittstellendefinition=20ak?= =?UTF-8?q?tualisiert,=20um=20die=20Funktionalit=C3=A4t=20f=C3=BCr=20imple?= =?UTF-8?q?mentierende=20Klassen=20zu=20erweitern.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalData.Core.Abstractions/Security/IAsymCryptService.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs b/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs index d832fc1..7a31a44 100644 --- a/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs +++ b/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs @@ -3,6 +3,8 @@ public interface IAsymCryptService : IRSAFactory { public IEnumerable Decryptors { get; } + + public IRSADecryptor this[string key] { get; } } public interface IAsymCryptService : IAsymCryptService, IRSAFactory { }