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