refactor(RSADecryptor): aktualisiert, um im Passwort- und Versions-Tupel-Format zu initieren, um Datenintegrität zu gewährleisten.

- password und PasswordVersion initter entfernt.
This commit is contained in:
Developer 02
2024-11-20 12:49:36 +01:00
parent 103ddf5c2e
commit 6ab1777f7c
2 changed files with 17 additions and 8 deletions

View File

@@ -2,9 +2,9 @@
{
public interface IRSADecryptor : IRSACryptographer
{
string? Password { init; }
(string Value, Version Version) VersionedPassword { init; }
Version? PasswordVersion { get; init; }
Version? PasswordVersion { get; }
bool HasEncryptedPem { get; }