feat(RSACryptographer): Issuer und Audience hinzugefügt

This commit is contained in:
Developer 02 2024-12-05 01:24:03 +01:00
parent cc3d1f58d3
commit 609cd29dc5

View File

@ -12,6 +12,10 @@ namespace DigitalData.Core.Security
protected virtual RSA RSA { get; } = RSA.Create();
public string? Issuer { get; init; }
public string? Audience { get; init; }
private DateOnly? _expiration;
public DateOnly? Expiration