namespace DigitalData.Core.Abstractions.Security { public interface IAsymCryptService : IRSAFactory { IRSADecryptor this[string key] { get; } bool TryGetRSADecryptor(string key, out IRSADecryptor? decryptor); } }