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); } }