namespace DigitalData.Core.Abstractions.Security { public interface IAsymCryptService : IRSAFactory { IEnumerable Decryptors { get; } IRSADecryptor Vault { get; } IEnumerable Encryptors { get; } } }