refactor(IRSADecryptor): HasEncryptedPem getter-Methode hinzugefügt
This commit is contained in:
parent
cdb0009e7c
commit
f9c94e8464
@ -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);
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user