2024-11-18 14:39:18 +01:00

13 lines
308 B
C#

namespace DigitalData.Core.Abstractions.Security
{
public interface IRSADecryptor : IRSACryptographer
{
public string? Password { get; init; }
public IRSAEncryptor Encryptor { get; }
public byte[] Decrypt(byte[] data);
public string Decrypt(string data);
}
}