Revert "refactor(RSACryptographer): Entfernte nullbare Eigenschaft von Issuer und Audience."

This reverts commit 16565eca4d.
This commit is contained in:
Developer 02
2024-12-05 23:08:13 +01:00
parent 16565eca4d
commit 600d17ef40
3 changed files with 8 additions and 46 deletions

View File

@@ -8,8 +8,8 @@ namespace DigitalData.Core.Abstractions.Security
public RSAEncryptionPadding Padding { get; init; }
public string Issuer { get; init; }
public string? Issuer { get; init; }
public string Audience { get; init; }
public string? Audience { get; init; }
}
}