From 0a3ce89c0dc2cef48aa9a32537a5b2f75d527caf Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Mon, 6 Jan 2025 11:29:19 +0100 Subject: [PATCH] =?UTF-8?q?refactor(IRSACryptographer):=20RsaSecurityKey-E?= =?UTF-8?q?igenschaft=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalData.Core.Abstractions/Security/IRSACryptographer.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/DigitalData.Core.Abstractions/Security/IRSACryptographer.cs b/DigitalData.Core.Abstractions/Security/IRSACryptographer.cs index e684eb4..6c7e360 100644 --- a/DigitalData.Core.Abstractions/Security/IRSACryptographer.cs +++ b/DigitalData.Core.Abstractions/Security/IRSACryptographer.cs @@ -1,4 +1,5 @@ -using System.Security.Cryptography; +using Microsoft.IdentityModel.Tokens; +using System.Security.Cryptography; namespace DigitalData.Core.Abstractions.Security { @@ -11,5 +12,7 @@ namespace DigitalData.Core.Abstractions.Security public new string Issuer { get; init; } public new string Audience { get; init; } + + public RsaSecurityKey RsaSecurityKey { get; } } } \ No newline at end of file