refactor(RSACryptographer): Verzeichnis- und Dateinamen-Intter in Setter umwandeln

This commit is contained in:
Developer 02 2024-12-06 17:27:03 +01:00
parent f79d2e2352
commit 3f61b5064c

View File

@ -12,9 +12,9 @@ namespace DigitalData.Core.Security.Cryptographer
public string? PemPath => FileName is null ? null : Path.Combine(Directory, FileName);
public string Directory { get; init; } = string.Empty;
public string Directory { get; set; } = string.Empty;
public string? FileName { get; init; }
public string? FileName { get; set; }
public RSAEncryptionPadding Padding { get; init; } = RSAEncryptionPadding.OaepSHA256;