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

- Schnittstelle aktualisiert
 - standardmäßig als leerer String zugewiesen.
This commit is contained in:
Developer 02
2024-12-05 20:07:17 +01:00
parent 8787c04917
commit 16565eca4d
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; }
}
}