feat(RSACryptographer) Init-Methode zur Verwaltung des pem-Importprozesses hinzugefügt

This commit is contained in:
Developer 02
2024-12-06 15:12:21 +01:00
parent 0ff89b4906
commit bea57a25e8
2 changed files with 16 additions and 27 deletions

View File

@@ -1,8 +1,9 @@
using System.Security.Cryptography;
using System.Text.Json.Serialization;
namespace DigitalData.Core.Abstractions.Security
{
public interface IRSACryptographer
public interface IRSACryptographer : IJsonOnDeserialized
{
public string Pem { get; init; }
@@ -11,5 +12,7 @@ namespace DigitalData.Core.Abstractions.Security
public string Issuer { get; init; }
public string Audience { get; init; }
public void Init();
}
}