namespace DigitalData.Core.Abstractions.Security { public interface IAsymCryptService : IRSAFactory { public IEnumerable Decryptors { get; } public IRSADecryptor this[string key] { get; } } public interface IAsymCryptService : IAsymCryptService, IRSAFactory { } }