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