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

This reverts commit 600d17ef40.
This commit is contained in:
Developer 02
2024-12-05 23:18:19 +01:00
parent 600d17ef40
commit 0ff89b4906
3 changed files with 46 additions and 8 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; }
}
}