From 1ebdd7e5bbe5b587b3950122041ce04ce3c3a105 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Wed, 20 Nov 2024 10:33:11 +0100 Subject: [PATCH] =?UTF-8?q?feat(RSADecryptor):=20=C3=96ffentliche=20Constr?= =?UTF-8?q?ucture-Methode=20gemacht.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalData.Core.Security/RSADecryptor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DigitalData.Core.Security/RSADecryptor.cs b/DigitalData.Core.Security/RSADecryptor.cs index 83813c1..9cffaef 100644 --- a/DigitalData.Core.Security/RSADecryptor.cs +++ b/DigitalData.Core.Security/RSADecryptor.cs @@ -14,7 +14,7 @@ namespace DigitalData.Core.Security public IRSAEncryptor Encryptor => _lazyEncryptor.Value; - internal RSADecryptor() + public RSADecryptor() { _lazyEncryptor = new(() => new RSAEncryptor() {