feat(AuthClient): implementierte Methode PublicKeys.get

- GetAllPublicKeysAsync Methode hinzugefügt, um GetPublicKeyAsync Methode für jeden öffentlichen Schlüssel aufzurufen.
 - Aktualisiert, um GetAllPublicKeysAsync Methode nach erfolgreichem Start und Wiederverbindung aufzurufen
This commit is contained in:
Developer 02
2025-03-06 14:18:55 +01:00
parent 8682f1f9e0
commit 6198008475
3 changed files with 17 additions and 2 deletions

View File

@@ -10,5 +10,5 @@ public class AsymmetricPublicKey : IUniqueSecurityContext, IAsymmetricPublicKey
public string? Id { get; init; }
public string Content { get; protected set; } = string.Empty;
public string Content { get; internal set; } = string.Empty;
}