From e623575fe8c67301de023b0c26fd102f672e0bd3 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Thu, 9 Jan 2025 18:33:51 +0100 Subject: [PATCH] =?UTF-8?q?refactor(Kryptograph):=20Aktualisiert,=20um=20T?= =?UTF-8?q?okenDescriptors=20aus=20CryptographParams=20hinzuzuf=C3=BCgen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalData.Core.Security/Cryptograph.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DigitalData.Core.Security/Cryptograph.cs b/DigitalData.Core.Security/Cryptograph.cs index 8483455..24f45d9 100644 --- a/DigitalData.Core.Security/Cryptograph.cs +++ b/DigitalData.Core.Security/Cryptograph.cs @@ -34,6 +34,8 @@ namespace DigitalData.Core.Security Decryptors = _params.Decryptors; + TokenDescriptors = _params.TokenDescriptors; + VaultDecryptor = _params.VaultDecryptor ?? Decryptors.First(); _lazyEncryptors = new(Decryptors.Select(decryptor => decryptor.Encryptor));