feat(RSACryptographer) Init-Methode zur Verwaltung des pem-Importprozesses hinzugefügt
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user