refactor(IRSADecryptor): HasEncryptedPem getter-Methode hinzugefügt

This commit is contained in:
Developer 02 2024-11-20 10:52:39 +01:00
parent cdb0009e7c
commit f9c94e8464

View File

@ -2,12 +2,14 @@
{
public interface IRSADecryptor : IRSACryptographer
{
public string? Password { get; init; }
string? Password { get; init; }
public IRSAEncryptor Encryptor { get; }
bool HasEncryptedPem { get; }
public byte[] Decrypt(byte[] data);
IRSAEncryptor Encryptor { get; }
public string Decrypt(string data);
byte[] Decrypt(byte[] data);
string Decrypt(string data);
}
}