From b3568216a063e1cc40d9c0d300ac23d9dafdd47e Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Thu, 5 Dec 2024 15:47:46 +0100 Subject: [PATCH] =?UTF-8?q?refactor(IAsymCryptService):=20Indexer=20entfer?= =?UTF-8?q?nt=20und=20Decryptors=20und=20Encryptors=20getter=20Methoden=20?= =?UTF-8?q?hinzugef=C3=BCgt.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalData.Core.Abstractions/Security/IAsymCryptService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs b/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs index 9e95d14..81088ee 100644 --- a/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs +++ b/DigitalData.Core.Abstractions/Security/IAsymCryptService.cs @@ -1,9 +1,9 @@ namespace DigitalData.Core.Abstractions.Security { public interface IAsymCryptService : IRSAFactory - { - IRSADecryptor this[string key] { get; } + { + public IEnumerable Decryptors { get; } - bool TryGetRSADecryptor(string key, out IRSADecryptor? decryptor); + public IEnumerable Encryptors { get; } } } \ No newline at end of file