feat: Hinzufügen der Methode GetPublicKeyAsync zu IAuthListenHandler und IAuthSenderHandler
This commit is contained in:
parent
4062fe750a
commit
137ccaa563
@ -3,4 +3,6 @@
|
|||||||
public interface IAuthListenHandler
|
public interface IAuthListenHandler
|
||||||
{
|
{
|
||||||
Task ReceiveKeyAsync(string name, string value);
|
Task ReceiveKeyAsync(string name, string value);
|
||||||
|
|
||||||
|
Task<string> GetPublicKeyAsync(string issuer, string audience);
|
||||||
}
|
}
|
||||||
@ -3,4 +3,6 @@
|
|||||||
public interface IAuthSenderHandler
|
public interface IAuthSenderHandler
|
||||||
{
|
{
|
||||||
Task SendKeyAsync(string name, string key);
|
Task SendKeyAsync(string name, string key);
|
||||||
|
|
||||||
|
Task<string> GetPublicKeyAsync(string issuer, string audience);
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user