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