feat(RSADecryptor): Aktualisiert für den Import von verschlüsseltem pem

This commit is contained in:
Developer 02
2024-11-18 14:27:53 +01:00
parent 0bb779b7b6
commit 6ff0d0a876
2 changed files with 16 additions and 5 deletions

View File

@@ -2,7 +2,9 @@
{
public interface IRSADecryptor : IRSACryptographer
{
public string PrivateKeyPem { init; }
public string PrivateKeyPem { get; init; }
public string? Password { get; init; }
public IRSAEncryptor Encryptor { get; }