From 137ccaa563f7e7a158c8a2dec518677ff8782115 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Tue, 4 Mar 2025 09:20:36 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20Hinzuf=C3=BCgen=20der=20Methode=20GetPu?= =?UTF-8?q?blicKeyAsync=20zu=20IAuthListenHandler=20und=20IAuthSenderHandl?= =?UTF-8?q?er?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalData.Auth.Abstractions/IAuthListenHandler.cs | 2 ++ DigitalData.Auth.Abstractions/IAuthSenderHandler.cs | 2 ++ 2 files changed, 4 insertions(+) diff --git a/DigitalData.Auth.Abstractions/IAuthListenHandler.cs b/DigitalData.Auth.Abstractions/IAuthListenHandler.cs index 925ff9a..5d71a33 100644 --- a/DigitalData.Auth.Abstractions/IAuthListenHandler.cs +++ b/DigitalData.Auth.Abstractions/IAuthListenHandler.cs @@ -3,4 +3,6 @@ public interface IAuthListenHandler { Task ReceiveKeyAsync(string name, string value); + + Task GetPublicKeyAsync(string issuer, string audience); } \ No newline at end of file diff --git a/DigitalData.Auth.Abstractions/IAuthSenderHandler.cs b/DigitalData.Auth.Abstractions/IAuthSenderHandler.cs index 20c4828..ab57e28 100644 --- a/DigitalData.Auth.Abstractions/IAuthSenderHandler.cs +++ b/DigitalData.Auth.Abstractions/IAuthSenderHandler.cs @@ -3,4 +3,6 @@ public interface IAuthSenderHandler { Task SendKeyAsync(string name, string key); + + Task GetPublicKeyAsync(string issuer, string audience); } \ No newline at end of file