From c6942164e294a77ede7852699cecae308e6aa011 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Tue, 3 Dec 2024 10:29:40 +0100 Subject: [PATCH] =?UTF-8?q?refactor(RSAFactory):=20=5Fparams=20wurde=20ges?= =?UTF-8?q?ch=C3=BCtzt=20und=20generisch=20f=C3=BCr=20die=20Verwendung=20i?= =?UTF-8?q?n=20geerbten=20Klassen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalData.Core.Security/RSAFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DigitalData.Core.Security/RSAFactory.cs b/DigitalData.Core.Security/RSAFactory.cs index 3a5af5f..452ce6c 100644 --- a/DigitalData.Core.Security/RSAFactory.cs +++ b/DigitalData.Core.Security/RSAFactory.cs @@ -22,7 +22,7 @@ namespace DigitalData.Core.Security public static RSAFactory Static => LazyInstance.Value; - private readonly RSAFactoryParams _params; + protected readonly TRSAFactoryParams _params; private readonly IEnumerable _lowerFileTags;